Rev 22 | Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 17 | chris | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 3 | android:orientation="horizontal" |
||
| 4 | android:layout_width="fill_parent" |
||
| 5 | android:layout_height="fill_parent" |
||
| 6 | android:gravity="center" |
||
| 7 | android:weightSum="1"> |
||
| 8 | |||
| 9 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 10 | android:orientation="vertical" |
||
| 11 | android:layout_width="wrap_content" |
||
| 12 | android:layout_height="250dp" |
||
| 13 | android:weightSum="1"> |
||
| 14 | |||
| 15 | <TextView |
||
| 16 | android:layout_width="wrap_content" |
||
| 17 | android:id="@+id/textView1" |
||
| 18 | android:layout_height="wrap_content" |
||
| 19 | android:textAppearance="?android:attr/textAppearanceLarge" |
||
| 20 | android:layout_gravity="center" |
||
| 21 | android:layout_margin="20dip" |
||
| 22 | android:text="@string/choose_mode"/> |
||
| 23 | |||
| 24 | <LinearLayout |
||
| 25 | android:layout_width="fill_parent" |
||
| 26 | android:id="@+id/linearLayout2" |
||
| 27 | android:orientation="horizontal" |
||
| 28 | android:weightSum="1" |
||
| 29 | android:gravity="center" |
||
| 30 | android:layout_height="125dp" |
||
| 31 | > |
||
| 32 | |||
| 33 | <ImageButton |
||
| 34 | android:layout_width="wrap_content" |
||
| 35 | android:layout_height="wrap_content" |
||
| 36 | android:src="@drawable/zhuyin" |
||
| 37 | android:padding="30dip" |
||
| 38 | android:layout_margin="5dip" |
||
| 39 | android:id="@+id/imageButtonZhuyin"/> |
||
| 40 | <ImageButton |
||
| 41 | android:layout_width="wrap_content" |
||
| 42 | android:layout_height="wrap_content" |
||
| 43 | android:src="@drawable/pinyin" |
||
| 44 | android:padding="30dip" |
||
| 45 | android:layout_margin="5dip" |
||
| 46 | android:id="@+id/imageButtonPinyin"/> |
||
| 47 | |||
| 48 | </LinearLayout> |
||
| 49 | </LinearLayout> |
||
| 50 | |||
| 51 | <LinearLayout |
||
| 52 | android:id="@+id/linearLayout2" |
||
| 53 | android:orientation="vertical" |
||
| 54 | android:weightSum="1" |
||
| 55 | android:layout_gravity="center" |
||
| 56 | android:layout_height="250dp" |
||
| 57 | android:layout_width="wrap_content" |
||
| 58 | android:layout_marginLeft="5dp"> |
||
| 59 | |||
| 60 | <TextView |
||
| 61 | android:textAppearance="?android:attr/textAppearanceMedium" |
||
| 62 | android:layout_width="wrap_content" |
||
| 63 | android:layout_height="wrap_content" |
||
| 64 | android:layout_marginTop="10dip" |
||
| 65 | android:text="@string/quiz_characters" |
||
| 66 | android:layout_marginRight="10dip" |
||
| 67 | /> |
||
| 68 | <Spinner |
||
| 69 | android:id="@+id/spinner" |
||
| 70 | android:layout_width="200dip" |
||
| 71 | android:layout_height="wrap_content" |
||
| 72 | android:prompt="@string/quiz_characters" |
||
| 73 | /> |
||
| 74 | |||
| 75 | <RadioGroup |
||
| 76 | android:id="@+id/radioGroupInput" |
||
| 77 | android:layout_width="wrap_content" |
||
| 78 | android:layout_height="wrap_content" |
||
| 79 | android:layout_marginTop="15dip" |
||
| 80 | > |
||
| 81 | <TextView |
||
| 82 | android:textAppearance="?android:attr/textAppearanceMedium" |
||
| 83 | android:layout_width="wrap_content" |
||
| 84 | android:layout_height="wrap_content" |
||
| 85 | android:layout_marginTop="10dip" |
||
| 86 | android:text="@string/input_characters" |
||
| 87 | android:layout_marginRight="10dip" |
||
| 88 | /> |
||
| 89 | <RadioButton |
||
| 90 | android:id="@+id/radioInputFull" |
||
| 91 | android:layout_width="wrap_content" |
||
| 92 | android:layout_height="wrap_content" |
||
| 93 | android:checked="true" android:text="@string/input_full" |
||
| 94 | /> |
||
| 95 | |||
| 96 | |||
| 97 | <RadioButton |
||
| 98 | android:id="@+id/radioInputSmall" |
||
| 99 | android:layout_width="wrap_content" |
||
| 100 | android:layout_height="wrap_content" |
||
| 101 | android:text="@string/input_small" |
||
| 102 | /> |
||
| 103 | |||
| 104 | </RadioGroup> |
||
| 105 | |||
| 106 | |||
| 107 | </LinearLayout> |
||
| 108 | |||
| 109 | </LinearLayout> |