project_files/Android-build/SDL-android-project/res/layout-large/activity_lobby.xml
changeset 7349 12fdfd2038d4
child 7449 2e63537b44f3
equal deleted inserted replaced
7346:b0f67c5b4215 7349:12fdfd2038d4
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <FrameLayout
       
     3 	xmlns:android="http://schemas.android.com/apk/res/android"
       
     4 	xmlns:tools="http://schemas.android.com/tools"
       
     5   	android:layout_width="fill_parent"
       
     6 	android:layout_height="fill_parent">
       
     7 	<include layout="@layout/background"/>
       
     8 
       
     9 	<LinearLayout
       
    10 	    android:layout_width="match_parent"
       
    11 	    android:layout_height="match_parent"
       
    12 	    android:orientation="vertical"
       
    13 	    android:padding="5dp" >
       
    14 	
       
    15 	    <FrameLayout
       
    16 	        android:layout_width="fill_parent"
       
    17 	        android:layout_height="0dp"
       
    18 	        android:layout_marginBottom="10dp"
       
    19 	        android:layout_weight="0.4"
       
    20 	        android:background="@drawable/box" >
       
    21 	
       
    22 	        <fragment
       
    23 	            android:id="@+id/roomListFragment"
       
    24 	            android:layout_width="fill_parent"
       
    25 	            android:layout_height="fill_parent"
       
    26 	            class="org.hedgewars.hedgeroid.netplay.RoomlistFragment"
       
    27 	            tools:layout="@layout/lobby_rooms_fragment" />
       
    28 	    </FrameLayout>
       
    29 	
       
    30 	    <LinearLayout
       
    31 	        android:layout_width="fill_parent"
       
    32 	        android:layout_height="0dp"
       
    33 	        android:layout_weight="0.6"
       
    34 	        android:baselineAligned="false"
       
    35 	        android:orientation="horizontal" >
       
    36 	
       
    37 	        <FrameLayout
       
    38 	            android:layout_width="0dp"
       
    39 	            android:layout_height="fill_parent"
       
    40 	            android:layout_marginRight="10dp"
       
    41 	            android:layout_weight="0.7"
       
    42 	            android:background="@drawable/box" >
       
    43 	
       
    44 	            <fragment
       
    45 	                android:id="@+id/chatFragment"
       
    46 	                android:layout_width="fill_parent"
       
    47 	                android:layout_height="fill_parent"
       
    48 	                class="org.hedgewars.hedgeroid.netplay.LobbyChatFragment"
       
    49 	                tools:layout="@layout/lobby_chat_fragment" />
       
    50 	        </FrameLayout>
       
    51 	
       
    52 	        <FrameLayout
       
    53 	            android:layout_width="0dp"
       
    54 	            android:layout_height="fill_parent"
       
    55 	            android:layout_weight="0.3"
       
    56 	            android:background="@drawable/box" >
       
    57 	
       
    58 	            <fragment
       
    59 	                android:id="@+id/playerListFragment"
       
    60 	                android:layout_width="fill_parent"
       
    61 	                android:layout_height="fill_parent"
       
    62 	                class="org.hedgewars.hedgeroid.netplay.PlayerlistFragment"
       
    63 	                tools:layout="@layout/lobby_players_fragment" />
       
    64 	        </FrameLayout>
       
    65 	    </LinearLayout>
       
    66 	
       
    67 	</LinearLayout>
       
    68 </FrameLayout>