author | Wuzzy <Wuzzy2@mail.ru> |
Sun, 07 Apr 2019 19:26:16 +0200 | |
changeset 14755 | ab7bf5036314 |
parent 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 |
||
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
9 |
<TabHost |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
10 |
android:id="@android:id/tabhost" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
11 |
android:layout_width="match_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
12 |
android:layout_height="match_parent" > |
7449 | 13 |
|
14 |
<LinearLayout |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
15 |
android:layout_width="match_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
16 |
android:layout_height="match_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
17 |
android:orientation="horizontal" > |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
18 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
19 |
<TabWidget |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
20 |
android:id="@android:id/tabs" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
21 |
android:layout_width="wrap_content" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
22 |
android:layout_height="match_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
23 |
android:layout_weight="0" /> |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
24 |
|
7449 | 25 |
<FrameLayout |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
26 |
android:id="@android:id/tabcontent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
27 |
android:layout_width="0dip" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
28 |
android:layout_height="match_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
29 |
android:layout_weight="1" > |
7449 | 30 |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
31 |
<fragment |
7449 | 32 |
android:id="@+id/mapFragment" |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
33 |
android:layout_width="fill_parent" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
34 |
android:layout_height="fill_parent" |
7552
1209e1c3c620
Hedgeroid: Fixed the restructuring-induced breakage
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
35 |
class="org.hedgewars.hedgeroid.MapFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
36 |
tools:layout="@layout/fragment_map" /> |
7449 | 37 |
|
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
38 |
<fragment |
7449 | 39 |
android:id="@+id/settingsFragment" |
7508
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
40 |
android:layout_width="fill_parent" |
763d3961400b
Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents:
7476
diff
changeset
|
41 |
android:layout_height="fill_parent" |
7552
1209e1c3c620
Hedgeroid: Fixed the restructuring-induced breakage
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
42 |
class="org.hedgewars.hedgeroid.SettingsFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
43 |
tools:layout="@layout/fragment_settings" /> |
7449 | 44 |
|
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
45 |
<fragment |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
46 |
android:id="@+id/teamlistFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
47 |
android:layout_width="fill_parent" |
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
48 |
android:layout_height="fill_parent" |
7552
1209e1c3c620
Hedgeroid: Fixed the restructuring-induced breakage
Medo <smaxein@googlemail.com>
parents:
7508
diff
changeset
|
49 |
class="org.hedgewars.hedgeroid.TeamlistFragment" |
7476
2fb781bbdd51
Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents:
7461
diff
changeset
|
50 |
tools:layout="@layout/fragment_teamlist" /> |
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
51 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
52 |
<fragment |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
53 |
android:id="@+id/chatFragment" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
54 |
android:layout_width="fill_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
55 |
android:layout_height="fill_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
56 |
class="org.hedgewars.hedgeroid.ChatFragment" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
57 |
tools:layout="@layout/fragment_chat" /> |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
58 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
59 |
<LinearLayout |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
60 |
android:id="@+id/playerListContainer" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
61 |
android:layout_width="fill_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
62 |
android:layout_height="fill_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
63 |
android:orientation="vertical" > |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
64 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
65 |
<fragment |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
66 |
android:id="@+id/playerListFragment" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
67 |
android:layout_width="fill_parent" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
68 |
android:layout_height="0dp" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
69 |
android:layout_weight="1" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
70 |
class="org.hedgewars.hedgeroid.RoomPlayerlistFragment" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
71 |
tools:layout="@layout/fragment_playerlist" /> |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
72 |
|
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
73 |
<Button |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
74 |
android:id="@+id/startGame" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
75 |
android:layout_width="120dp" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
76 |
android:layout_height="40dp" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
77 |
android:layout_gravity="right" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
78 |
android:layout_marginTop="4dp" |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
79 |
android:background="@drawable/startgamebutton" /> |
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
80 |
</LinearLayout> |
7449 | 81 |
</FrameLayout> |
82 |
</LinearLayout> |
|
7582
714310efad8f
Hedgeroid: Final sprint to the deadline
Medo <smaxein@googlemail.com>
parents:
7552
diff
changeset
|
83 |
</TabHost> |
7449 | 84 |
|
85 |
</FrameLayout> |