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