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