author | Medo <smaxein@googlemail.com> |
Mon, 20 Aug 2012 20:19:35 +0200 | |
changeset 7582 | 714310efad8f |
parent 7508 | 763d3961400b |
permissions | -rw-r--r-- |
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:background="@drawable/box" |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
19 |
android:scaleType="fitCenter" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
20 |
android:src="@drawable/roomlist_preparing" /> |
7449 | 21 |
|
22 |
<TableLayout |
|
23 |
android:id="@+id/gameOptions" |
|
24 |
android:layout_width="wrap_content" |
|
25 |
android:layout_height="wrap_content" |
|
26 |
android:layout_below="@id/mapPreview" |
|
27 |
android:stretchColumns="1" > |
|
28 |
||
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
29 |
<TableRow android:layout_marginTop="5dip" > |
7449 | 30 |
|
31 |
<TextView |
|
32 |
android:layout_width="wrap_content" |
|
33 |
android:layout_height="wrap_content" |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
34 |
android:text="@string/map_gen" /> |
7449 | 35 |
|
36 |
<Spinner |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
37 |
android:id="@+id/spinMapType" |
7449 | 38 |
android:layout_width="wrap_content" |
39 |
android:layout_height="wrap_content" |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
40 |
android:layout_marginLeft = "5dip" |
7449 | 41 |
android:background="@drawable/dropdown" /> |
42 |
</TableRow> |
|
43 |
||
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
44 |
<TableRow |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
45 |
android:id="@+id/rowMapName" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
46 |
android:layout_marginTop="5dip" > |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
47 |
|
7449 | 48 |
<TextView |
49 |
android:layout_width="wrap_content" |
|
50 |
android:layout_height="wrap_content" |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
51 |
android:layout_gravity="center_vertical" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
52 |
android:text="@string/map_name" /> |
7449 | 53 |
|
54 |
<Spinner |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
55 |
android:id="@+id/spinMapName" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
56 |
android:layout_width="fill_parent" |
7449 | 57 |
android:layout_height="wrap_content" |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
58 |
android:layout_marginLeft = "5dip" |
7449 | 59 |
android:background="@drawable/dropdown" /> |
60 |
</TableRow> |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
61 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
62 |
<TableRow |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
63 |
android:id="@+id/rowTemplateFilter" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
64 |
android:layout_marginTop="5dip" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
65 |
android:visibility="gone" > |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
66 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
67 |
<TextView |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
68 |
android:layout_width="wrap_content" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
69 |
android:layout_height="wrap_content" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
70 |
android:layout_gravity="center_vertical" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
71 |
android:text="@string/map_template" /> |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
72 |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
73 |
<Spinner |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
74 |
android:id="@+id/spinTemplateFilter" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
75 |
android:layout_width="fill_parent" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
76 |
android:layout_height="wrap_content" |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
77 |
android:layout_marginLeft = "5dip" |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
78 |
android:background="@drawable/dropdown" /> |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
79 |
</TableRow> |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
80 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
81 |
<TableRow |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
82 |
android:id="@+id/rowMazeSize" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
83 |
android:layout_marginTop="5dip" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
84 |
android:visibility="gone" > |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
85 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
86 |
<TextView |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
87 |
android:layout_width="wrap_content" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
88 |
android:layout_height="wrap_content" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
89 |
android:layout_gravity="center_vertical" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
90 |
android:text="@string/map_maze_size" /> |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
91 |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
92 |
<Spinner |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
93 |
android:id="@+id/spinMazeSize" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
94 |
android:layout_width="fill_parent" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
95 |
android:layout_height="wrap_content" |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
96 |
android:layout_marginLeft = "5dip" |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
97 |
android:background="@drawable/dropdown" /> |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
98 |
</TableRow> |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
99 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
100 |
<Button |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
101 |
android:id="@+id/btnEditDrawnMap" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
102 |
android:layout_width="fill_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
103 |
android:layout_height="wrap_content" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
104 |
android:layout_marginTop="5dip" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
105 |
android:background="@drawable/button" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
106 |
android:enabled="false" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
107 |
android:text="@string/map_button_editdrawnmap" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
108 |
android:visibility="gone" /> |
7449 | 109 |
</TableLayout> |
110 |
||
111 |
</RelativeLayout> |