project_files/Android-build/SDL-android-project/res/layout/team_selector.xml
changeset 7582 714310efad8f
parent 7580 c92596feac0d
child 7584 7831c84cc644
equal deleted inserted replaced
7580:c92596feac0d 7582:714310efad8f
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <RelativeLayout
       
     3   xmlns:android="http://schemas.android.com/apk/res/android"
       
     4   android:layout_width="fill_parent"
       
     5   android:layout_height="fill_parent">
       
     6   
       
     7   <include layout="@layout/background"/>
       
     8 
       
     9   <ImageButton
       
    10    	android:id="@+id/btnAdd"
       
    11    	android:layout_width="wrap_content"
       
    12    	android:layout_height="50dip"
       
    13    	android:layout_alignParentBottom="true"
       
    14    	android:layout_alignParentRight="true"
       
    15    	android:adjustViewBounds="true"
       
    16    	android:scaleType="centerInside"
       
    17    	android:background="@android:color/transparent"
       
    18    	android:src="@drawable/settings"/>
       
    19  <TextView
       
    20   	android:id="@+id/txtInfo"
       
    21   	android:layout_height="wrap_content"
       
    22   	android:layout_width="fill_parent"
       
    23   	android:layout_alignParentBottom="true"
       
    24   	android:layout_toRightOf="@id/btnBack"
       
    25   	android:layout_toLeftOf="@id/btnAdd"
       
    26   	android:layout_alignTop="@id/btnBack"
       
    27   	android:layout_margin="3dp"
       
    28   	android:gravity="center"
       
    29   	android:background="@drawable/box"/>
       
    30   	
       
    31   
       
    32 
       
    33   <LinearLayout
       
    34   	android:orientation="horizontal"
       
    35   	android:layout_width="fill_parent"
       
    36   	android:layout_height="fill_parent"
       
    37   	android:layout_above="@id/txtInfo"
       
    38   	android:layout_margin="3dp">
       
    39   	
       
    40 	  <ListView
       
    41 	  	android:id="@+id/selectedTeams"
       
    42 	  	android:layout_height="fill_parent"
       
    43 	  	android:layout_width="wrap_content"
       
    44 	  	android:layout_margin="3dp"
       
    45 	  	android:background="@drawable/box"
       
    46 	  	android:layout_weight="1"/>
       
    47 	  	
       
    48 	  <ListView
       
    49 	  	android:id="@+id/availableTeams"
       
    50 	  	android:layout_height="fill_parent"
       
    51 	  	android:layout_width="wrap_content"
       
    52 	  	android:layout_margin="3dp"
       
    53 	  	android:background="@drawable/box"
       
    54 	  	android:layout_weight="1"/>
       
    55   </LinearLayout>
       
    56 </RelativeLayout>