project_files/Android-build/SDL-android-project/res/layout-large/activity_lobby.xml
author Medo <smaxein@googlemail.com>
Wed, 01 Aug 2012 21:13:39 +0200
changeset 7455 8e86d8d2927d
parent 7449 2e63537b44f3
child 7476 2fb781bbdd51
permissions -rw-r--r--
Hedgeroid: Fix argument passing to ChatFragment, small layout fixes

<?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"/>

	<LinearLayout
	    android:layout_width="match_parent"
	    android:layout_height="match_parent"
	    android:orientation="vertical"
	    android:padding="5dp" >
	
	    <FrameLayout
	        android:layout_width="fill_parent"
	        android:layout_height="0dp"
	        android:layout_marginBottom="10dp"
	        android:layout_weight="0.4"
	        android:background="@drawable/box" >
	
	        <fragment
	            android:id="@+id/roomListFragment"
	            android:layout_width="fill_parent"
	            android:layout_height="fill_parent"
	            class="org.hedgewars.hedgeroid.netplay.RoomlistFragment"
	            tools:layout="@layout/lobby_rooms_fragment" />
	    </FrameLayout>
	
	    <RelativeLayout
	        android:layout_width="fill_parent"
	        android:layout_height="0dp"
	        android:layout_weight="0.6"
	        android:baselineAligned="false"
	        android:orientation="horizontal" >
	
	        <FrameLayout
	            android:id="@+id/playerFrame"
	            android:layout_width="250dp"
	            android:layout_height="fill_parent"
	            android:layout_alignParentRight="true"
	            android:background="@drawable/box" >
	
	            <fragment
	                android:id="@+id/playerListFragment"
	                android:layout_width="fill_parent"
	                android:layout_height="fill_parent"
	                class="org.hedgewars.hedgeroid.netplay.PlayerlistFragment"
	                tools:layout="@layout/lobby_players_fragment" />
	        </FrameLayout>
	        
	        <FrameLayout
	            android:layout_width="0dp"
	            android:layout_height="fill_parent"
	            android:layout_alignParentLeft="true"
	            android:layout_toLeftOf="@id/playerFrame"
	            android:layout_marginRight="10dp"
	            android:background="@drawable/box" >
	
	            <fragment
	                android:id="@+id/chatFragment"
	                android:layout_width="fill_parent"
	                android:layout_height="fill_parent"
	                class="org.hedgewars.hedgeroid.netplay.ChatFragment"
	                tools:layout="@layout/fragment_chat" />
	        </FrameLayout>
	    </RelativeLayout>
	
	</LinearLayout>
</FrameLayout>