Subversion Repositories Projects

Rev

Rev 212 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
212 ligi 1
<?xml version="1.0" encoding="utf-8"?>
2
 
3
 
4
 
5
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
6
    android:orientation="vertical"
7
    android:layout_width="fill_parent"
8
    android:layout_height="fill_parent">
9
 
10
 
11
 
12
 
13
 
14
 
15
 
16
    <LinearLayout
17
        android:orientation="vertical"
18
        android:layout_width="fill_parent"
19
        android:layout_height="wrap_content">
20
 
21
 
22
    <TextView
23
            android:layout_width="fill_parent"
24
            android:layout_height="wrap_content"
25
            android:layout_marginTop="5dip"
26
            android:text="Host:"
27
            android:textAppearance="?android:attr/textAppearanceLarge"
28
            android:focusable="true"
29
        />
30
 
31
        <EditText android:id="@+id/edit_host"
32
            android:layout_width="fill_parent"
33
            android:layout_height="wrap_content"/>
34
 
35
 
36
    <TextView
37
            android:layout_width="fill_parent"
38
            android:layout_height="wrap_content"
39
            android:layout_marginTop="5dip"
40
            android:text="Port:"
41
            android:textAppearance="?android:attr/textAppearanceLarge"
42
            android:focusable="true"
43
        />
44
 
45
        <EditText android:id="@+id/edit_port"
46
            android:layout_width="fill_parent"
47
            android:layout_height="wrap_content"/>
48
 
49
 
50
        <CheckBox android:id="@+id/check_autoconn"
51
            android:paddingBottom="24sp"
52
                android:paddingTop="24sp"
53
            android:layout_width="wrap_content"
54
            android:layout_height="wrap_content"
55
            android:text=" Auto Connect " />
56
 
57
 
58
 
59
        <Button android:id="@+id/save_btn"
60
            android:text="Save"
61
            android:layout_width="wrap_content"
62
            android:layout_height="wrap_content"/>
63
 
64
        <Button android:id="@+id/cancel_btn"
65
            android:text="Cancel"
66
            android:layout_width="wrap_content"
67
            android:layout_height="wrap_content"/>
68
 
69
    </LinearLayout>
70
 
71
</ScrollView>
72
 
73
 
74
 
75
 
76
 
77
 
78