7449
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
2 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3 |
xmlns:tools="http://schemas.android.com/tools"
|
|
4 |
android:layout_width="match_parent"
|
|
5 |
android:layout_height="match_parent"
|
|
6 |
android:orientation="vertical"
|
|
7 |
android:paddingBottom="3dp"
|
|
8 |
android:paddingLeft="5dp"
|
|
9 |
android:paddingRight="3dp"
|
|
10 |
android:paddingTop="3dp" >
|
|
11 |
|
|
12 |
<ImageView
|
|
13 |
android:id="@+id/mapPreview"
|
|
14 |
android:layout_width="256dip"
|
|
15 |
android:layout_height="128dip"
|
|
16 |
android:layout_alignParentTop="true"
|
|
17 |
android:layout_centerHorizontal="true"
|
|
18 |
android:layout_margin="5dip"
|
|
19 |
android:background="@drawable/box"
|
|
20 |
android:scaleType="fitXY"
|
|
21 |
android:src="@drawable/backbutton" />
|
|
22 |
|
|
23 |
<TableLayout
|
|
24 |
android:id="@+id/gameOptions"
|
|
25 |
android:layout_width="wrap_content"
|
|
26 |
android:layout_height="wrap_content"
|
|
27 |
android:layout_below="@id/mapPreview"
|
|
28 |
android:stretchColumns="1" >
|
|
29 |
|
|
30 |
<TableRow>
|
|
31 |
|
|
32 |
<TextView
|
|
33 |
android:id="@+id/txtMap"
|
|
34 |
android:layout_width="wrap_content"
|
|
35 |
android:layout_height="wrap_content"
|
|
36 |
android:text="@string/map_map" />
|
|
37 |
|
|
38 |
<Spinner
|
|
39 |
android:id="@+id/spinMaps"
|
|
40 |
android:layout_width="wrap_content"
|
|
41 |
android:layout_height="wrap_content"
|
|
42 |
android:background="@drawable/dropdown" />
|
|
43 |
</TableRow>
|
|
44 |
|
|
45 |
<TableRow>
|
|
46 |
|
|
47 |
<TextView
|
|
48 |
android:id="@+id/txtType"
|
|
49 |
android:layout_width="wrap_content"
|
|
50 |
android:layout_height="wrap_content"
|
|
51 |
android:text="@string/map_type" />
|
|
52 |
|
|
53 |
<Spinner
|
|
54 |
android:id="@+id/spinType"
|
|
55 |
android:layout_width="wrap_content"
|
|
56 |
android:layout_height="wrap_content"
|
|
57 |
android:background="@drawable/dropdown" />
|
|
58 |
</TableRow>
|
|
59 |
</TableLayout>
|
|
60 |
|
|
61 |
</RelativeLayout> |