2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2013-02-17 19:42:30 +00:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-05-14 03:41:16 +00:00
|
|
|
android:id="@+id/scroll_parent"
|
2013-12-02 21:14:27 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-01-21 07:26:58 +00:00
|
|
|
android:fillViewport="true">
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2014-05-14 03:41:16 +00:00
|
|
|
<RelativeLayout android:id="@+id/prompt_layout"
|
|
|
|
android:layout_width="match_parent"
|
2014-10-30 01:28:20 +00:00
|
|
|
android:layout_height="wrap_content">
|
2013-12-02 21:14:27 +00:00
|
|
|
|
2014-05-14 03:41:16 +00:00
|
|
|
<ImageView android:id="@+id/watermark"
|
|
|
|
android:layout_width="wrap_content"
|
2013-12-02 21:14:27 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-05-14 03:41:16 +00:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginBottom="50dp"
|
2015-03-08 23:32:57 +00:00
|
|
|
android:src="?lockscreen_watermark"
|
2014-05-14 03:41:16 +00:00
|
|
|
android:contentDescription="@string/PassphrasePromptActivity_watermark_content_description"
|
|
|
|
android:layout_marginTop="30dp"/>
|
2013-12-02 21:14:27 +00:00
|
|
|
|
2014-05-14 03:41:16 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/watermark">
|
|
|
|
|
|
|
|
<EditText android:id="@+id/passphrase_edit"
|
|
|
|
android:layout_width="match_parent"
|
2014-10-30 01:28:20 +00:00
|
|
|
android:layout_height="45sp"
|
2014-05-14 03:41:16 +00:00
|
|
|
android:inputType="textPassword"
|
|
|
|
android:layout_marginLeft="50dp"
|
|
|
|
android:layout_marginRight="50dp"
|
|
|
|
android:singleLine="true"
|
2014-10-30 01:28:20 +00:00
|
|
|
android:paddingLeft="10dp"
|
2015-07-23 15:16:45 +00:00
|
|
|
android:paddingRight="40dp"/>
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.AnimatingToggle
|
|
|
|
android:id="@+id/button_toggle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignRight="@+id/passphrase_edit"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<ImageButton android:id="@+id/passphrase_visibility"
|
|
|
|
android:src="?ic_visibility"
|
|
|
|
android:background="@drawable/touch_highlight_background"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:paddingTop="3dp"
|
|
|
|
android:paddingBottom="3dp"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
|
|
|
|
<ImageButton android:id="@+id/passphrase_visibility_off"
|
|
|
|
android:src="?ic_visibility_off"
|
|
|
|
android:background="@drawable/touch_highlight_background"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:paddingTop="3dp"
|
|
|
|
android:paddingBottom="3dp"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
|
|
|
|
</org.thoughtcrime.securesms.components.AnimatingToggle>
|
2014-05-14 03:41:16 +00:00
|
|
|
|
|
|
|
<ImageButton android:id="@+id/ok_button"
|
2015-03-08 23:32:57 +00:00
|
|
|
android:src="?ic_arrow_forward"
|
2014-05-14 03:41:16 +00:00
|
|
|
android:contentDescription="@string/PassphrasePromptActivity_ok_button_content_description"
|
|
|
|
android:background="@null"
|
|
|
|
android:text="@string/prompt_passphrase_activity__unlock"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:paddingBottom="5dp"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2013-12-02 21:14:27 +00:00
|
|
|
|
2013-02-17 19:42:30 +00:00
|
|
|
</ScrollView>
|