author | Medo <smaxein@googlemail.com> |
Mon, 06 Aug 2012 22:39:36 +0200 | |
changeset 7476 | 2fb781bbdd51 |
parent 7461 | 38acbfdb484f |
child 7508 | 763d3961400b |
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" > |
|
24 |
||
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 |
||
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
33 |
<!-- |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
34 |
<fragment |
7449 | 35 |
android:id="@+id/mapFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
36 |
android:layout_width="fill_parent" |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
37 |
android:layout_height="fill_parent" |
7449 | 38 |
class="org.hedgewars.hedgeroid.netplay.MapFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
39 |
tools:layout="@layout/fragment_map" /> |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
40 |
--> |
7449 | 41 |
</FrameLayout> |
42 |
||
43 |
<FrameLayout |
|
44 |
android:id="@+id/settingsFrame" |
|
45 |
android:layout_width="0dp" |
|
46 |
android:layout_height="wrap_content" |
|
47 |
android:layout_marginRight="10dp" |
|
48 |
android:layout_weight="1" |
|
49 |
android:background="@drawable/box" > |
|
50 |
||
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
51 |
<!-- |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
52 |
<fragment |
7449 | 53 |
android:id="@+id/settingsFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
54 |
android:layout_width="fill_parent" |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
55 |
android:layout_height="fill_parent" |
7449 | 56 |
class="org.hedgewars.hedgeroid.netplay.SettingsFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
57 |
tools:layout="@layout/fragment_settings" /> |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
58 |
--> |
7449 | 59 |
</FrameLayout> |
60 |
||
61 |
<FrameLayout |
|
62 |
android:id="@+id/teamsFrame" |
|
63 |
android:layout_width="0dp" |
|
64 |
android:layout_height="fill_parent" |
|
65 |
android:layout_weight="1" |
|
66 |
android:background="@drawable/box" > |
|
67 |
||
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
68 |
<fragment |
7449 | 69 |
android:id="@+id/teamsFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
70 |
android:layout_width="fill_parent" |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
71 |
android:layout_height="fill_parent" |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
72 |
class="org.hedgewars.hedgeroid.netplay.TeamlistFragment" |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
73 |
tools:layout="@layout/fragment_teamlist" /> |
7449 | 74 |
</FrameLayout> |
75 |
</LinearLayout> |
|
76 |
||
77 |
<FrameLayout |
|
78 |
android:id="@+id/playerFrame" |
|
79 |
android:layout_width="200dp" |
|
80 |
android:layout_height="fill_parent" |
|
81 |
android:layout_alignParentBottom="true" |
|
82 |
android:layout_alignParentRight="true" |
|
83 |
android:layout_below="@id/upperFrame" |
|
84 |
android:background="@drawable/box" > |
|
85 |
||
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
86 |
<fragment |
7449 | 87 |
android:id="@+id/playerListFragment" |
88 |
android:layout_width="fill_parent" |
|
89 |
android:layout_height="fill_parent" |
|
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
90 |
class="org.hedgewars.hedgeroid.netplay.RoomPlayerlistFragment" |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
91 |
tools:layout="@layout/fragment_playerlist" /> |
7449 | 92 |
</FrameLayout> |
93 |
||
94 |
<FrameLayout |
|
95 |
android:layout_width="0dp" |
|
96 |
android:layout_height="fill_parent" |
|
97 |
android:layout_alignParentBottom="true" |
|
98 |
android:layout_alignParentLeft="true" |
|
99 |
android:layout_below="@id/upperFrame" |
|
100 |
android:layout_marginRight="10dp" |
|
101 |
android:layout_toLeftOf="@id/playerFrame" |
|
102 |
android:background="@drawable/box" > |
|
103 |
||
104 |
<fragment |
|
105 |
android:id="@+id/chatFragment" |
|
106 |
android:layout_width="fill_parent" |
|
107 |
android:layout_height="fill_parent" |
|
7455
8e86d8d2927d
Hedgeroid: Fix argument passing to ChatFragment, small layout fixes
Medo <smaxein@googlemail.com>
parents:
7449
diff
changeset
|
108 |
class="org.hedgewars.hedgeroid.netplay.ChatFragment" |
7449 | 109 |
tools:layout="@layout/fragment_chat" /> |
110 |
</FrameLayout> |
|
111 |
</RelativeLayout> |
|
112 |
||
113 |
</FrameLayout> |