1 |
<?xml version="1.0" encoding="utf-8"?> |
---|
2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
---|
3 |
android:orientation="vertical" |
---|
4 |
android:layout_width="fill_parent" |
---|
5 |
android:layout_height="fill_parent" |
---|
6 |
> |
---|
7 |
<RadioGroup |
---|
8 |
android:id="@+id/radioGroup01" |
---|
9 |
android:orientation="horizontal" |
---|
10 |
android:layout_width="wrap_content" |
---|
11 |
android:layout_height="wrap_content" |
---|
12 |
> |
---|
13 |
<RadioButton |
---|
14 |
android:id="@+id/radioButton01" |
---|
15 |
android:layout_width="wrap_content" |
---|
16 |
android:layout_height="wrap_content" |
---|
17 |
android:text="�ш낵"/> |
---|
18 |
|
---|
19 |
<RadioButton |
---|
20 |
android:id="@+id/radioButton02" |
---|
21 |
android:layout_width="wrap_content" |
---|
22 |
android:layout_height="wrap_content" |
---|
23 |
android:text="���"/> |
---|
24 |
|
---|
25 |
<RadioButton |
---|
26 |
android:id="@+id/radioButton03" |
---|
27 |
android:layout_width="wrap_content" |
---|
28 |
android:layout_height="wrap_content" |
---|
29 |
android:text="諛�/> |
---|
30 |
</RadioGroup> |
---|
31 |
|
---|
32 |
<RadioGroup |
---|
33 |
android:id="@+id/radioGroup02" |
---|
34 |
android:orientation="horizontal" |
---|
35 |
android:layout_width="wrap_content" |
---|
36 |
android:layout_height="wrap_content" |
---|
37 |
android:layout_marginTop="50px"> |
---|
38 |
<RadioButton |
---|
39 |
android:id="@+id/radioButton04" |
---|
40 |
android:layout_width="wrap_content" |
---|
41 |
android:layout_height="wrap_content" |
---|
42 |
android:text="�⑥�"/> |
---|
43 |
|
---|
44 |
<RadioButton |
---|
45 |
android:id="@+id/radioButton05" |
---|
46 |
android:layout_width="wrap_content" |
---|
47 |
android:layout_height="wrap_content" |
---|
48 |
android:text="�ъ�"/> |
---|
49 |
|
---|
50 |
</RadioGroup> |
---|
51 |
|
---|
52 |
<EditText |
---|
53 |
android:id="@+id/et" |
---|
54 |
android:layout_width="wrap_content" |
---|
55 |
android:layout_height="wrap_content" |
---|
56 |
android:hint="��������釉�� 李���� |
---|
57 |
/> |
---|
58 |
|
---|
59 |
<!-- 怨쇱� : 鍮④� / �щ� :��� --> |
---|
60 |
</LinearLayout> |
---|