2010-05-11 12:33:34 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:paddingRight="5dip">
|
|
|
|
|
|
|
|
<EditText
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/passPhrase"
|
2010-05-11 12:33:34 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"/>
|
|
|
|
|
|
|
|
<EditText
|
2010-05-13 16:41:32 -04:00
|
|
|
android:id="@+id/passPhraseAgain"
|
2010-05-11 12:33:34 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|