project_files/Android-build/SDL-android-project/res/layout-large/activity_localroom.xml
author Medo <smaxein@googlemail.com>
Mon, 20 Aug 2012 20:19:35 +0200
changeset 7582 714310efad8f
permissions -rw-r--r--
Hedgeroid: Final sprint to the deadline - Changed local game setup to use the new fragments from the netroom - Pulled team editing into the main activity menu / action bar - Cleanups, renames, anything to make the code look better ;)

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <include layout="@layout/background" />

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="2dp" >

        <LinearLayout
            android:id="@+id/upperFrame"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:layout_marginBottom="4dp"
            android:layout_above="@+id/startGame"
            android:baselineAligned="false"
            android:minHeight="200dp" >

            <FrameLayout
                android:id="@+id/mapFrame"
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_marginRight="4dp"
                android:layout_weight="1"
                android:background="@drawable/box" >

                <fragment
                    android:id="@+id/mapFragment"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    class="org.hedgewars.hedgeroid.MapFragment"
                    tools:layout="@layout/fragment_map" />
            </FrameLayout>

            <FrameLayout
                android:id="@+id/settingsFrame"
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_marginRight="4dp"
                android:layout_weight="1"
                android:background="@drawable/box" >

                <fragment
                    android:id="@+id/settingsFragment"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    class="org.hedgewars.hedgeroid.SettingsFragment"
                    tools:layout="@layout/fragment_settings" />
            </FrameLayout>

            <FrameLayout
                android:id="@+id/teamsFrame"
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:background="@drawable/box" >

                <fragment
                    android:id="@+id/teamsFragment"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    class="org.hedgewars.hedgeroid.TeamlistFragment"
                    tools:layout="@layout/fragment_teamlist" />
            </FrameLayout>
        </LinearLayout>

        <Button
            android:id="@id/startGame"
            android:layout_width="200dp"
            android:layout_height="67dp"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:background="@drawable/startgamebutton" />
    </RelativeLayout>

</FrameLayout>