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="vertical" |
||
| 4 | android:layout_width="fill_parent" |
||
| 5 | android:layout_height="fill_parent" |
||
| 6 | > |
||
| 7 | |||
| 8 | <TextView |
||
| 9 | android:text="TextView" |
||
| 10 | android:id="@+id/statusText" |
||
| 11 | android:layout_width="wrap_content" |
||
| 12 | android:layout_height="wrap_content" |
||
| 13 | android:layout_gravity="center"/> |
||
| 14 | |||
| 15 | <LinearLayout |
||
| 16 | android:layout_width="fill_parent" |
||
| 17 | android:id="@+id/linearLayout1" |
||
| 18 | android:orientation="horizontal" |
||
| 19 | android:layout_height="fill_parent" |
||
| 20 | android:weightSum="1"> |
||
| 21 | |||
| 22 | <TextView android:src="@drawable/icon" |
||
| 23 | android:text="b" |
||
| 24 | android:layout_height="wrap_content" |
||
| 25 | android:layout_width="0dip" |
||
| 26 | android:id="@+id/characterAsked" |
||
| 27 | android:layout_gravity="center" |
||
| 28 | android:gravity="center_vertical|center_horizontal" |
||
| 29 | android:textSize="64sp" |
||
| 30 | android:textColor="#ffffff" |
||
| 31 | android:layout_weight="1"/> |
||
| 32 | |||
| 33 | <GridView xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 34 | android:layout_alignParentBottom="true" |
||
| 35 | android:id="@+id/gridview" |
||
| 36 | android:layout_height="fill_parent" |
||
| 37 | android:numColumns="auto_fit" |
||
| 38 | android:verticalSpacing="5dp" |
||
| 39 | android:horizontalSpacing="5dp" |
||
| 40 | android:columnWidth="60dp" |
||
| 41 | android:stretchMode="columnWidth" |
||
| 42 | android:layout_marginBottom="0dp" |
||
| 43 | android:layout_gravity="center_horizontal|bottom" |
||
| 44 | android:layout_width="300dp"/> |
||
| 45 | |||
| 46 | </LinearLayout> |
||
| 47 | </LinearLayout> |
||
| 48 |