aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/pass_phrase.xml
blob: f377e5bf73fb7b8763e31c7246ca47f7dd2c639c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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
        android:id="@+id/passPhrase"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="textPassword"/>

    <EditText
        android:id="@+id/passPhraseAgain"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="textPassword"/>

</LinearLayout>