summaryrefslogtreecommitdiff
path: root/android/sdremote/res/layout/dialog_addserver.xml
blob: 475aabd6d7a14f3639705ab988c1c316e27b1093 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/addserver_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="12dp"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/wifiAlertMsg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:text="@string/wifiAlertMsg"
        android:textStyle="italic"
        android:typeface="serif" />

    <TextView
        android:id="@+id/addserver_namelabel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/addserver_entername" />

    <EditText
        android:id="@+id/addserver_nameentry"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:inputType="textCapWords" >

        <requestFocus />
    </EditText>

    <TextView
        android:id="@+id/addserver_addressabel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/addserver_enteraddress" />

    <EditText
        android:id="@+id/addserver_addressentry"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:inputType="textUri" >

    </EditText>

    <CheckBox
        android:id="@+id/addserver_remember"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:checked="true"
        android:text="@string/addserver_remember" />

</LinearLayout>