1+ <RelativeLayout xmlns : android =" http://schemas.android.com/apk/res/android"
2+ android : focusable =" true" android : focusableInTouchMode =" true"
3+ android : layout_width =" match_parent"
4+ android : layout_height =" match_parent"
5+ android : padding =" 6dp" >
6+
7+ <ToggleButton
8+ android : id =" @+id/sniffToggleButton"
9+ android : layout_width =" wrap_content"
10+ android : layout_height =" wrap_content"
11+ android : text =" @string/toggle_button"
12+ android : textOff =" Start"
13+ android : textOn =" Stop"
14+ android : paddingLeft =" 24dp"
15+ android : paddingRight =" 24dp"
16+ android : textAllCaps =" true"
17+ android : fontFamily =" sans-serif-condensed" />
18+
19+ <ProgressBar
20+ android : id =" @+id/sniffActivity"
21+ android : layout_width =" wrap_content"
22+ android : layout_height =" wrap_content"
23+ android : layout_alignParentRight =" true"
24+ android : layout_alignTop =" @+id/sniffToggleButton"
25+ android : visibility =" invisible" />
26+
27+ <View
28+ android : id =" @+id/separator"
29+ android : layout_width =" fill_parent"
30+ android : layout_height =" 1dp"
31+ android : layout_marginTop =" 8dp"
32+ android : layout_marginBottom =" 8dp"
33+ android : layout_below =" @+id/sniffToggleButton"
34+ android : background =" @android:color/darker_gray" />
35+
36+ <Button
37+ android : layout_width =" wrap_content"
38+ android : layout_height =" wrap_content"
39+ android : text =" Save"
40+ android : id =" @+id/cmd_save"
41+ android : layout_alignParentBottom =" true"
42+ android : layout_alignParentLeft =" true"
43+ android : layout_alignParentStart =" true"
44+ android : layout_alignParentRight =" true"
45+ android : layout_alignParentEnd =" true" />
46+
47+ <EditText
48+ android : layout_width =" wrap_content"
49+ android : layout_height =" wrap_content"
50+ android : inputType =" textMultiLine"
51+ android : ems =" 10"
52+ android : id =" @+id/textViewDNSList"
53+ android : layout_alignTop =" @+id/separator"
54+ android : layout_alignParentLeft =" true"
55+ android : layout_alignParentStart =" true"
56+ android : layout_above =" @+id/cmd_save"
57+ android : layout_alignParentRight =" true"
58+ android : layout_alignParentEnd =" true"
59+ android : scrollbars =" vertical|horizontal"
60+ android : scrollHorizontally =" true"
61+ android : editable =" true" />
62+
63+ </RelativeLayout >
0 commit comments