|
4 | 4 | android:layout_height="match_parent" |
5 | 5 | android:orientation="vertical" > |
6 | 6 |
|
| 7 | + <LinearLayout |
| 8 | + android:layout_width="match_parent" |
| 9 | + android:layout_height="wrap_content" |
| 10 | + android:background="#CCC" |
| 11 | + android:gravity="center_horizontal" |
| 12 | + android:orientation="horizontal" > |
| 13 | + |
| 14 | + <TextView |
| 15 | + android:layout_width="105dp" |
| 16 | + android:layout_height="wrap_content" |
| 17 | + android:gravity="center_horizontal" |
| 18 | + android:text="@string/group" /> |
| 19 | + |
| 20 | + <TextView |
| 21 | + android:layout_width="105dp" |
| 22 | + android:layout_height="wrap_content" |
| 23 | + android:gravity="center_horizontal" |
| 24 | + android:paddingLeft="5dp" |
| 25 | + android:paddingRight="5dp" |
| 26 | + android:text="@string/child" /> |
| 27 | + |
| 28 | + <TextView |
| 29 | + android:layout_width="105dp" |
| 30 | + android:layout_height="wrap_content" |
| 31 | + android:gravity="center_horizontal" |
| 32 | + android:text="@string/only_one_item" /> |
| 33 | + </LinearLayout> |
| 34 | + |
| 35 | + <LinearLayout |
| 36 | + android:layout_width="match_parent" |
| 37 | + android:layout_height="wrap_content" |
| 38 | + android:background="#CCC" |
| 39 | + android:gravity="center_horizontal" |
| 40 | + android:orientation="horizontal" > |
| 41 | + |
| 42 | + <Spinner |
| 43 | + android:id="@+id/groupChoiceModes" |
| 44 | + android:layout_width="105dp" |
| 45 | + android:layout_height="wrap_content" |
| 46 | + android:entries="@array/group_choice_modes" |
| 47 | + android:prompt="@string/group_choice_modes_label" /> |
| 48 | + |
| 49 | + <Spinner |
| 50 | + android:id="@+id/childChoiceModes" |
| 51 | + android:layout_width="105dp" |
| 52 | + android:layout_height="wrap_content" |
| 53 | + android:entries="@array/child_choice_modes" |
| 54 | + android:paddingLeft="5dp" |
| 55 | + android:paddingRight="5dp" |
| 56 | + android:prompt="@string/child_choice_modes" /> |
| 57 | + |
| 58 | + <ToggleButton |
| 59 | + android:id="@+id/onlyOneItem" |
| 60 | + android:layout_width="105dp" |
| 61 | + android:layout_height="wrap_content" |
| 62 | + android:text="@string/only_one_item" /> |
| 63 | + </LinearLayout> |
| 64 | + |
7 | 65 | <com.kemallette.MultiChoiceExpandableList.MultiChoiceExpandableListView |
8 | 66 | android:id="@+id/list" |
9 | 67 | android:layout_width="match_parent" |
|
0 commit comments