blob: 1f20d9ba8efdb2c71772d095a54aac084ee9e7f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="@dimen/dialog_vertical_margin"
android:paddingLeft="@dimen/dialog_horizontal_margin"
android:paddingRight="@dimen/dialog_horizontal_margin"
android:paddingTop="@dimen/dialog_vertical_margin">
<EditText
android:id="@+id/enc_dec_net_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/field_net_name"/>
<EditText
android:id="@+id/enc_dec_current_passphrase"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/field_current_passphrase"
android:inputType="textVisiblePassword"/>
<EditText
android:id="@+id/enc_dec_new_passphrase"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hint="@string/field_new_passphrase"
android:inputType="textVisiblePassword"/>
</LinearLayout>
|