2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2013-02-17 19:42:30 +00:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:layout_width="fill_parent"
|
2013-02-17 19:42:30 +00:00
|
|
|
android:layout_height="fill_parent"
|
2015-06-08 23:34:24 +00:00
|
|
|
android:fillViewport="true">
|
2012-09-09 23:10:46 +00:00
|
|
|
|
2015-11-17 01:39:13 +00:00
|
|
|
<FrameLayout android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center">
|
2013-02-17 19:42:30 +00:00
|
|
|
|
|
|
|
<LinearLayout android:paddingRight="16dip"
|
|
|
|
android:paddingLeft="16dip"
|
|
|
|
android:paddingTop="10dip"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2015-11-17 01:39:13 +00:00
|
|
|
<android.support.design.widget.TextInputLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2012-09-09 23:10:46 +00:00
|
|
|
|
2015-11-17 01:39:13 +00:00
|
|
|
<EditText android:id="@+id/old_passphrase"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:layout_marginBottom="10dip"
|
|
|
|
android:hint="@string/change_passphrase_activity__old_passphrase"
|
|
|
|
android:singleLine="true"/>
|
2012-09-09 23:10:46 +00:00
|
|
|
|
2015-11-17 01:39:13 +00:00
|
|
|
</android.support.design.widget.TextInputLayout>
|
|
|
|
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<EditText android:id="@+id/new_passphrase"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:hint="@string/change_passphrase_activity__new_passphrase"
|
|
|
|
android:singleLine="true"/>
|
|
|
|
|
|
|
|
</android.support.design.widget.TextInputLayout>
|
|
|
|
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<EditText android:id="@+id/repeat_passphrase"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:hint="@string/change_passphrase_activity__repeat_new_passphrase"
|
|
|
|
android:singleLine="true" />
|
|
|
|
|
|
|
|
</android.support.design.widget.TextInputLayout>
|
2012-09-09 23:10:46 +00:00
|
|
|
|
2013-02-17 19:42:30 +00:00
|
|
|
<LinearLayout android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="30dip">
|
2012-09-09 23:10:46 +00:00
|
|
|
|
2013-11-30 23:36:21 +00:00
|
|
|
<Button android:id="@+id/cancel_button"
|
2013-02-17 19:42:30 +00:00
|
|
|
android:text="@android:string/cancel"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="0dp"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
2013-02-17 19:42:30 +00:00
|
|
|
android:layout_marginRight="7dip"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
|
|
|
|
2013-11-30 23:36:21 +00:00
|
|
|
<Button android:id="@+id/ok_button"
|
2013-02-17 19:42:30 +00:00
|
|
|
android:text="@android:string/ok"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="0dp"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
2013-02-17 19:42:30 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
|
|
|
</LinearLayout>
|
2012-09-09 23:10:46 +00:00
|
|
|
</LinearLayout>
|
2013-02-17 19:42:30 +00:00
|
|
|
</FrameLayout>
|
2012-09-09 23:10:46 +00:00
|
|
|
</ScrollView>
|