2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-07-20 05:54:44 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2012-07-20 05:54:44 +00:00
|
|
|
<EditText android:inputType="textPassword"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:id="@+id/passphrase_edit"
|
|
|
|
android:password="true"
|
|
|
|
android:layout_margin="16dip"/>
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2012-07-20 05:54:44 +00:00
|
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_marginBottom="16dip"
|
|
|
|
android:gravity="right">
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2012-07-20 05:54:44 +00:00
|
|
|
<TableLayout android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:stretchColumns="*">
|
|
|
|
<TableRow>
|
|
|
|
<Button android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/cancel"
|
2012-07-20 05:54:44 +00:00
|
|
|
android:id="@+id/cancel_button"
|
|
|
|
android:layout_marginRight="15dip"
|
|
|
|
android:layout_marginLeft="16dip"/>
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2012-07-20 05:54:44 +00:00
|
|
|
<Button 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-20 05:54:44 +00:00
|
|
|
android:id="@+id/ok_button"
|
|
|
|
android:layout_marginRight="16dip"/>
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|