author | Medo <smaxein@googlemail.com> |
Sat, 18 Aug 2012 01:12:03 +0200 | |
changeset 7552 | 1209e1c3c620 |
parent 7508 | 763d3961400b |
child 7582 | 714310efad8f |
permissions | -rw-r--r-- |
7449 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 |
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 |
xmlns:tools="http://schemas.android.com/tools" |
|
4 |
android:layout_width="fill_parent" |
|
5 |
android:layout_height="fill_parent" > |
|
6 |
||
7 |
<include layout="@layout/background" /> |
|
8 |
||
9 |
<RelativeLayout |
|
10 |
android:layout_width="fill_parent" |
|
11 |
android:layout_height="fill_parent" |
|
12 |
android:padding="5dp" > |
|
13 |
||
14 |
<LinearLayout |
|
15 |
android:id="@+id/upperFrame" |
|
16 |
android:layout_width="fill_parent" |
|
17 |
android:layout_height="wrap_content" |
|
18 |
android:layout_alignParentLeft="true" |
|
19 |
android:layout_alignParentRight="true" |
|
20 |
android:layout_alignParentTop="true" |
|
21 |
android:layout_marginBottom="10dp" |
|
22 |
android:baselineAligned="false" |
|
23 |
android:minHeight="200dp" > |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
24 |
|
7449 | 25 |
<FrameLayout |
26 |
android:id="@+id/mapFrame" |
|
27 |
android:layout_width="0dp" |
|
28 |
android:layout_height="wrap_content" |
|
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
29 |
android:layout_marginRight="10dp" |
7449 | 30 |
android:layout_weight="1" |
31 |
android:background="@drawable/box" > |
|
32 |
||
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
33 |
<fragment |
7449 | 34 |
android:id="@+id/mapFragment" |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
35 |
android:layout_width="fill_parent" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
36 |
android:layout_height="fill_parent" |
7552
1209e1c3c620
Hedgeroid: Fixed the restructuring-induced breakage
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
37 |
class="org.hedgewars.hedgeroid.MapFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
38 |
tools:layout="@layout/fragment_map" /> |
7449 | 39 |
</FrameLayout> |
40 |
||
41 |
<FrameLayout |
|
42 |
android:id="@+id/settingsFrame" |
|
43 |
android:layout_width="0dp" |
|
44 |
android:layout_height="wrap_content" |
|
45 |
android:layout_marginRight="10dp" |
|
46 |
android:layout_weight="1" |
|
47 |
android:background="@drawable/box" > |
|
48 |
||
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
49 |
<fragment |
7449 | 50 |
android:id="@+id/settingsFragment" |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
51 |
android:layout_width="fill_parent" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
52 |
android:layout_height="fill_parent" |
7552
1209e1c3c620
Hedgeroid: Fixed the restructuring-induced breakage
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
53 |
class="org.hedgewars.hedgeroid.SettingsFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
54 |
tools:layout="@layout/fragment_settings" /> |
7449 | 55 |
</FrameLayout> |
56 |
||
57 |
<FrameLayout |
|
58 |
android:id="@+id/teamsFrame" |
|
59 |
android:layout_width="0dp" |
|
60 |
android:layout_height="fill_parent" |
|
61 |
android:layout_weight="1" |
|
62 |
android:background="@drawable/box" > |
|
63 |
||
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
64 |
<fragment |
7449 | 65 |
android:id="@+id/teamsFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
66 |
android:layout_width="fill_parent" |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
67 |
android:layout_height="fill_parent" |
7552
1209e1c3c620
Hedgeroid: Fixed the restructuring-induced breakage
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
68 |
class="org.hedgewars.hedgeroid.TeamlistFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
69 |
tools:layout="@layout/fragment_teamlist" /> |
7449 | 70 |
</FrameLayout> |
71 |
</LinearLayout> |
|
72 |
||
73 |
<FrameLayout |
|
74 |
android:id="@+id/playerFrame" |
|
75 |
android:layout_width="200dp" |
|
76 |
android:layout_height="fill_parent" |
|
77 |
android:layout_alignParentBottom="true" |
|
78 |
android:layout_alignParentRight="true" |
|
79 |
android:layout_below="@id/upperFrame" |
|
80 |
android:background="@drawable/box" > |
|
81 |
||
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
82 |
<fragment |
7449 | 83 |
android:id="@+id/playerListFragment" |
84 |
android:layout_width="fill_parent" |
|
85 |
android:layout_height="fill_parent" |
|
7552
1209e1c3c620
Hedgeroid: Fixed the restructuring-induced breakage
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
86 |
class="org.hedgewars.hedgeroid.RoomPlayerlistFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
87 |
tools:layout="@layout/fragment_playerlist" /> |
7449 | 88 |
</FrameLayout> |
89 |
||
90 |
<FrameLayout |
|
91 |
android:layout_width="0dp" |
|
92 |
android:layout_height="fill_parent" |
|
93 |
android:layout_alignParentBottom="true" |
|
94 |
android:layout_alignParentLeft="true" |
|
95 |
android:layout_below="@id/upperFrame" |
|
96 |
android:layout_marginRight="10dp" |
|
97 |
android:layout_toLeftOf="@id/playerFrame" |
|
98 |
android:background="@drawable/box" > |
|
99 |
||
100 |
<fragment |
|
101 |
android:id="@+id/chatFragment" |
|
102 |
android:layout_width="fill_parent" |
|
103 |
android:layout_height="fill_parent" |
|
7552
1209e1c3c620
Hedgeroid: Fixed the restructuring-induced breakage
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
104 |
class="org.hedgewars.hedgeroid.ChatFragment" |
7449 | 105 |
tools:layout="@layout/fragment_chat" /> |
106 |
</FrameLayout> |
|
107 |
</RelativeLayout> |
|
108 |
||
109 |
</FrameLayout> |