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-07-23 20:42:29 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
<TableLayout
|
2011-12-20 18:20:44 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:stretchColumns="1">
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
2012-07-23 20:42:29 +00:00
|
|
|
android:textSize="12sp"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/old_passphrase"
|
2011-12-20 18:20:44 +00:00
|
|
|
android:padding="3dip" />
|
2012-07-23 20:42:29 +00:00
|
|
|
|
|
|
|
<EditText android:id="@+id/old_passphrase"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:password="true"/>
|
2011-12-20 18:20:44 +00:00
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/new_passphrase"
|
2012-07-23 20:42:29 +00:00
|
|
|
android:textSize="12sp"
|
2011-12-20 18:20:44 +00:00
|
|
|
android:padding="3dip" />
|
2012-07-23 20:42:29 +00:00
|
|
|
|
|
|
|
<EditText android:id="@+id/new_passphrase"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:password="true"
|
|
|
|
/>
|
2011-12-20 18:20:44 +00:00
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/repeat_new_passphrase"
|
2012-07-23 20:42:29 +00:00
|
|
|
android:textSize="12sp"
|
2011-12-20 18:20:44 +00:00
|
|
|
android:padding="3dip" />
|
2012-07-23 20:42:29 +00:00
|
|
|
|
|
|
|
<EditText android:id="@+id/repeat_passphrase"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:password="true"
|
|
|
|
/>
|
2011-12-20 18:20:44 +00:00
|
|
|
</TableRow>
|
|
|
|
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
<TableRow>
|
2012-07-23 20:42:29 +00:00
|
|
|
<Button android:id="@+id/cancel_button"
|
|
|
|
android:padding="10dip"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/cancel"/>
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2012-07-23 20:42:29 +00:00
|
|
|
<Button android:id="@+id/ok_button"
|
|
|
|
android:padding="10dip"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@android:string/ok"/>
|
2012-07-23 20:42:29 +00:00
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
2011-12-20 18:20:44 +00:00
|
|
|
</ScrollView>
|