2014-03-31 14:04:05 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-04-01 09:32:14 -04:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-03-31 14:04:05 -04:00
|
|
|
android:layout_width="match_parent"
|
2014-04-01 09:32:14 -04:00
|
|
|
android:layout_height="match_parent"
|
2014-04-01 09:04:54 -04:00
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingBottom="4dp"
|
|
|
|
android:paddingLeft="16dp"
|
2014-04-01 09:32:14 -04:00
|
|
|
android:paddingRight="16dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TableLayout
|
|
|
|
android:id="@+id/modeSymmetric"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:stretchColumns="1"
|
|
|
|
android:layout_centerVertical="true">
|
2014-03-31 14:04:05 -04:00
|
|
|
|
2014-04-01 09:32:14 -04:00
|
|
|
<TableRow>
|
2014-03-31 14:04:05 -04:00
|
|
|
|
2014-04-01 09:32:14 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/label_passphrase"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:text="@string/label_passphrase"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2014-03-31 14:04:05 -04:00
|
|
|
|
2014-04-01 09:32:14 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/passphrase"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword" />
|
|
|
|
</TableRow>
|
2014-03-31 14:04:05 -04:00
|
|
|
|
2014-04-01 09:32:14 -04:00
|
|
|
<TableRow>
|
2014-03-31 14:04:05 -04:00
|
|
|
|
2014-04-01 09:32:14 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/label_passphraseAgain"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:text="@string/label_passphrase_again"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2014-03-31 14:04:05 -04:00
|
|
|
|
2014-04-01 09:32:14 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/passphraseAgain"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword" />
|
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
</RelativeLayout>
|