1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <LinearLayout xmlns : android =" http://schemas.android.com/apk/res/android"
3+ android : layout_width =" fill_parent"
4+ android : layout_height =" fill_parent"
5+ android : orientation =" vertical" >
6+
7+ <TextView
8+ android : layout_width =" fill_parent"
9+ android : layout_height =" wrap_content"
10+ android : text =" @string/hello" />
11+
12+ <Button
13+ android : id =" @+id/button1"
14+ android : layout_width =" wrap_content"
15+ android : layout_height =" wrap_content"
16+ android : text =" Button" />
17+
18+ <ToggleButton
19+ android : id =" @+id/toggleButton1"
20+ android : layout_width =" wrap_content"
21+ android : layout_height =" wrap_content"
22+ android : text =" ToggleButton" />
23+
24+ <CheckBox
25+ android : id =" @+id/checkBox1"
26+ android : layout_width =" wrap_content"
27+ android : layout_height =" wrap_content"
28+ android : text =" CheckBox" />
29+
30+ <LinearLayout
31+ android : id =" @+id/test"
32+ android : layout_width =" match_parent"
33+ android : layout_height =" wrap_content" >
34+
35+ <TextView
36+ android : id =" @+id/textView1"
37+ android : layout_width =" wrap_content"
38+ android : layout_height =" wrap_content"
39+ android : text =" Large Text"
40+ android : textAppearance =" ?android:attr/textAppearanceLarge" />
41+
42+ <EditText
43+ android : id =" @+id/editText1"
44+ android : layout_width =" match_parent"
45+ android : layout_height =" wrap_content" >
46+
47+ <requestFocus />
48+ </EditText >
49+ </LinearLayout >
50+
51+ </LinearLayout >
0 commit comments