2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-09-09 23:10:46 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2011-12-20 18:20:44 +00:00
|
|
|
android:layout_width="fill_parent"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:layout_height="fill_parent" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-10 02:49:02 +00:00
|
|
|
android:paddingLeft="16dip"
|
|
|
|
android:paddingRight="16dip"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:orientation="vertical" >
|
2011-12-20 18:20:44 +00:00
|
|
|
|
|
|
|
<TextView
|
2012-09-09 23:10:46 +00:00
|
|
|
android:padding="3dip"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/old_passphrase"
|
2012-09-10 02:49:02 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2012-09-09 23:10:46 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/old_passphrase"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:layout_marginBottom="5dip" />
|
2011-12-20 18:20:44 +00:00
|
|
|
|
|
|
|
<TextView
|
2012-09-09 23:10:46 +00:00
|
|
|
android:padding="3dip"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/new_passphrase"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2012-09-09 23:10:46 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/new_passphrase"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:layout_marginBottom="5dip" />
|
2011-12-20 18:20:44 +00:00
|
|
|
|
|
|
|
<TextView
|
2012-09-09 23:10:46 +00:00
|
|
|
android:padding="3dip"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/repeat_new_passphrase"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/repeat_passphrase"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:layout_marginBottom="5dip" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="16dip"
|
|
|
|
android:gravity="right"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<TableLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:stretchColumns="*"
|
|
|
|
tools:ignore="UselessParent" >
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/cancel_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="15dip"
|
|
|
|
android:text="@string/cancel" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/ok_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
android:text="@android:string/ok" />
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|