2011-12-20 10:20:44 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-07-23 13:42:29 -07:00
|
|
|
|
2013-02-17 11:42:30 -08:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-09-09 16:10:46 -07:00
|
|
|
android:layout_width="fill_parent"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:layout_height="fill_parent"
|
2015-06-09 01:34:24 +02:00
|
|
|
android:fillViewport="true">
|
2012-09-09 16:10:46 -07:00
|
|
|
|
2015-11-16 17:39:13 -08:00
|
|
|
<FrameLayout android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center">
|
2013-02-17 11:42:30 -08:00
|
|
|
|
2019-03-20 15:52:14 -07:00
|
|
|
<LinearLayout android:paddingEnd="16dip"
|
|
|
|
android:paddingStart="16dip"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:paddingTop="10dip"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2020-08-19 10:06:26 +10:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2015-11-16 17:39:13 -08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2012-09-09 16:10:46 -07:00
|
|
|
|
2015-11-16 17:39:13 -08: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 16:10:46 -07:00
|
|
|
|
2020-08-19 10:06:26 +10:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2015-11-16 17:39:13 -08:00
|
|
|
|
2020-08-19 10:06:26 +10:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2015-11-16 17:39:13 -08:00
|
|
|
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"/>
|
|
|
|
|
2020-08-19 10:06:26 +10:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2015-11-16 17:39:13 -08:00
|
|
|
|
2020-08-19 10:06:26 +10:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2015-11-16 17:39:13 -08:00
|
|
|
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" />
|
|
|
|
|
2020-08-19 10:06:26 +10:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2012-09-09 16:10:46 -07:00
|
|
|
|
2013-02-17 11:42:30 -08:00
|
|
|
<LinearLayout android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-20 15:52:14 -07:00
|
|
|
android:layout_marginTop="30dp">
|
2012-09-09 16:10:46 -07:00
|
|
|
|
2013-12-01 01:36:21 +02:00
|
|
|
<Button android:id="@+id/cancel_button"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:text="@android:string/cancel"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="0dp"
|
2012-09-09 16:10:46 -07:00
|
|
|
android:layout_height="wrap_content"
|
2019-03-20 15:52:14 -07:00
|
|
|
android:layout_marginEnd="7dp"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
|
|
|
|
2013-12-01 01:36:21 +02:00
|
|
|
<Button android:id="@+id/ok_button"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:text="@android:string/ok"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_width="0dp"
|
2012-09-09 16:10:46 -07:00
|
|
|
android:layout_height="wrap_content"
|
2013-02-17 11:42:30 -08:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
|
|
|
</LinearLayout>
|
2012-09-09 16:10:46 -07:00
|
|
|
</LinearLayout>
|
2013-02-17 11:42:30 -08:00
|
|
|
</FrameLayout>
|
2012-09-09 16:10:46 -07:00
|
|
|
</ScrollView>
|