1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout
3 xmlns:android="http://schemas.android.com/apk/res/android"
4 xmlns:tools="http://schemas.android.com/tools"
5 android:layout_width="match_parent"
6 android:layout_height 7 android:paddingBottom="@dimen/activity_vertical_margin"
8 android:paddingLeft="@dimen/activity_horizontal_margin"
9 android:paddingRight 10 android:paddingTop 11 android:orientation="vertical"
12 tools:context="com.hex.demolayout.LinearActivity">
13 TextView
14 android:id="@+id/tv_text"
15 android:text="@string/tv_name"
16 android:textSize="20dp"
17 android:layout_marginTop="5dp"
18 android:textColor="@color/colorBlue"
19 android:layout_width 20 android:layout_height="wrap_content"/>
21 EditText
22 ="@+id/txt_name"
23 android:hint="@string/hint_name"
24 25 26 27 ="@+id/tv_age"
28 ="@string/tv_age"
29 30 31 32 33 34 35 ="@+id/txt_age"
36 37 38 39 40 ="@+id/tv_sex"
41 ="@string/tv_sex"
42 43 44 45 46 47 RadioGroup
48 ="@+id/rg_sex"
49 50 android:orientation="horizontal"
51 52 53 RadioButton
54 ="@+id/rb_male"
55 android:text="@string/male"
56 android:textSize="20sp"
57 android:checked="true"
58 android:layout_width="wrap_content"
59 android:layout_height 60 61 ="@+id/rb_female"
62 63 ="@string/female"
64 android:layout_marginLeft="30dp"
65 66 67 </RadioGroup 68 69 ="@+id/tv_love"
70 ="@string/love"
71 72 73 74 75 76 77 android:layout_width 78 79 ="10dp"
80 ="horizontal" 81 CheckBox
82 ="@+id/ck_basketball"
83 ="@string/basketball"
84 85 86 87 88 ="@+id/ck_football"
89 ="@string/football"
90 91 92 93 94 95 ="@+id/ck_game"
96 ="@string/game"
97 98 99 100 101 LinearLayout102 103 ="@+id/tv_school"
104 ="@string/school"
105 106 107 108 109 110 111 ="@+id/txt_school"
112 ="@string/hint_school"
113 114 115 116 ="@+id/tv_addr"
117 ="@string/addr"
118 119 120 121 122 123 124 ="@+id/txt_addr"
125 ="@string/hint_addr"
126 127 128 Button
129 ="@+id/bn_submit"
130 ="@string/bn_submit"
131 132 133 134 >