Rev 23 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 23 | 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 | |||
| 24 | chris | 8 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 23 | chris | 9 | android:id="@+id/mainLayout" |
| 10 | android:orientation="vertical" |
||
| 11 | android:layout_width="fill_parent" |
||
| 12 | android:layout_height="50dp" |
||
| 24 | chris | 13 | android:gravity="center_horizontal|bottom" |
| 23 | chris | 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 | |||
| 23 | <TextView |
||
| 24 | android:text="TextView" |
||
| 25 | android:id="@+id/statusText" |
||
| 26 | android:layout_width="wrap_content" |
||
| 27 | android:layout_height="wrap_content" |
||
| 24 | chris | 28 | android:layout_gravity="center" |
| 29 | android:textAppearance="?android:attr/textAppearanceLarge"/> |
||
| 23 | chris | 30 | |
| 31 | <LinearLayout |
||
| 32 | android:layout_width="fill_parent" |
||
| 33 | android:id="@+id/linearLayout1" |
||
| 24 | chris | 34 | android:orientation="vertical" |
| 23 | chris | 35 | android:layout_height="fill_parent" |
| 36 | android:weightSum="1"> |
||
| 37 | |||
| 38 | <TextView android:src="@drawable/icon" |
||
| 39 | android:text="b" |
||
| 24 | chris | 40 | android:layout_height="0dip" |
| 41 | android:layout_width="wrap_content" |
||
| 23 | chris | 42 | android:id="@+id/characterAsked" |
| 43 | android:layout_gravity="center" |
||
| 44 | android:gravity="center_vertical|center_horizontal" |
||
| 24 | chris | 45 | android:textSize="120sp" |
| 23 | chris | 46 | android:textColor="#ffffff" |
| 24 | chris | 47 | android:layout_weight="1" |
| 48 | /> |
||
| 23 | chris | 49 | |
| 50 | <GridView xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 51 | android:layout_alignParentBottom="true" |
||
| 52 | android:id="@+id/gridview" |
||
| 24 | chris | 53 | android:layout_width="fill_parent" |
| 23 | chris | 54 | android:numColumns="auto_fit" |
| 55 | android:verticalSpacing="5dp" |
||
| 56 | android:horizontalSpacing="5dp" |
||
| 57 | android:columnWidth="60dp" |
||
| 58 | android:stretchMode="columnWidth" |
||
| 59 | android:layout_marginBottom="0dp" |
||
| 60 | android:layout_gravity="center_horizontal|bottom" |
||
| 24 | chris | 61 | android:layout_height="450dp"/> |
| 23 | chris | 62 | |
| 63 | </LinearLayout> |
||
| 64 | </LinearLayout> |
||
| 65 |