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