aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/pass_phrase.xml
blob: 2441fd16c72a93f6119514002d4a94f8d9339f62 (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/pass_phrase"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="textPassword"/>

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

</LinearLayout>