session-android/res/layout/create_passphrase_activity.xml

29 lines
1.2 KiB
XML
Raw Normal View History

2011-12-20 18:20:44 +00:00
<?xml version="1.0" encoding="utf-8"?>
2017-02-08 11:28:49 +00:00
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/prompt_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-07-24 00:09:02 +00:00
android:background="@color/loki_darkest_gray">
2017-02-08 11:28:49 +00:00
<ProgressBar android:id="@+id/passphrase_edit"
android:layout_width="75dp"
android:layout_height="75dp"
android:indeterminate="true"
android:padding="10dp"
android:layout_centerInParent="true"
2019-07-24 00:09:02 +00:00
android:visibility="gone"
2017-02-08 11:28:49 +00:00
style="?android:attr/progressBarStyleLargeInverse"/>
<ImageView android:id="@+id/watermark"
android:layout_width="wrap_content"
2019-07-24 00:09:02 +00:00
android:layout_height="128dp"
android:layout_centerInParent="true"
2017-02-08 11:28:49 +00:00
android:layout_marginBottom="20dp"
android:layout_above="@id/passphrase_edit"
2019-07-24 00:09:02 +00:00
android:src="@drawable/ic_launcher_foreground"
2017-02-08 11:28:49 +00:00
android:contentDescription="@string/PassphrasePromptActivity_watermark_content_description"/>
</RelativeLayout>