aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/dialog_network_generate.xml
blob: d849ca1b71ba1d2b247c2e3169da72bed48cfd59 (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
<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/new_net_name"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:hint="@string/field_net_name"/>

	<EditText
		android:id="@+id/new_node_name"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:hint="@string/field_node_name"/>

	<EditText
		android:id="@+id/new_passphrase"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:hint="@string/field_optional_passphrase"
		android:inputType="textVisiblePassword"/>

</LinearLayout>