2011-12-20 10:20:44 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-23 13:42:29 -07:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
<TableLayout
|
2011-12-20 10:20:44 -08:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:stretchColumns="1">
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
2012-07-23 13:42:29 -07:00
|
|
|
android:textSize="12sp"
|
2011-12-20 10:20:44 -08:00
|
|
|
android:text="Old passphrase:"
|
|
|
|
android:padding="3dip" />
|
2012-07-23 13:42:29 -07:00
|
|
|
|
|
|
|
<EditText android:id="@+id/old_passphrase"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:password="true"/>
|
2011-12-20 10:20:44 -08:00
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
|
|
android:text="New passphrase:"
|
2012-07-23 13:42:29 -07:00
|
|
|
android:textSize="12sp"
|
2011-12-20 10:20:44 -08:00
|
|
|
android:padding="3dip" />
|
2012-07-23 13:42:29 -07:00
|
|
|
|
|
|
|
<EditText android:id="@+id/new_passphrase"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:password="true"
|
|
|
|
/>
|
2011-12-20 10:20:44 -08:00
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
|
|
android:text="Repeat new passphrase:"
|
2012-07-23 13:42:29 -07:00
|
|
|
android:textSize="12sp"
|
2011-12-20 10:20:44 -08:00
|
|
|
android:padding="3dip" />
|
2012-07-23 13:42:29 -07:00
|
|
|
|
|
|
|
<EditText android:id="@+id/repeat_passphrase"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:password="true"
|
|
|
|
/>
|
2011-12-20 10:20:44 -08:00
|
|
|
</TableRow>
|
|
|
|
|
2012-07-23 13:42:29 -07:00
|
|
|
|
2011-12-20 10:20:44 -08:00
|
|
|
<TableRow>
|
2012-07-23 13:42:29 -07:00
|
|
|
<Button android:id="@+id/cancel_button"
|
|
|
|
android:padding="10dip"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Cancel"/>
|
2011-12-20 10:20:44 -08:00
|
|
|
|
2012-07-23 13:42:29 -07:00
|
|
|
<Button android:id="@+id/ok_button"
|
|
|
|
android:padding="10dip"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Ok"/>
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
2011-12-20 10:20:44 -08:00
|
|
|
</ScrollView>
|