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