project_files/Android-build/SDL-android-project/res/layout/activity_teamlist.xml
changeset 7582 714310efad8f
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   <TextView
       
    10     android:id="@android:id/empty"
       
    11     android:layout_width="match_parent"
       
    12     android:layout_height="match_parent"
       
    13     android:gravity="center"
       
    14     android:text="@string/teamlist_empty" />
       
    15   
       
    16   <ListView
       
    17   	android:id="@android:id/list"
       
    18   	android:layout_height="fill_parent"
       
    19   	android:layout_width="wrap_content"
       
    20   	android:layout_margin="3dp"
       
    21   	android:background="@drawable/box" />
       
    22 
       
    23   <ImageButton
       
    24    	android:id="@+id/btnAdd"
       
    25    	android:layout_width="wrap_content"
       
    26    	android:layout_height="50dip"
       
    27    	android:layout_alignParentBottom="true"
       
    28    	android:layout_alignParentRight="true"
       
    29    	android:adjustViewBounds="true"
       
    30    	android:scaleType="centerInside"
       
    31    	android:background="@android:color/transparent"
       
    32    	android:src="@drawable/settings"
       
    33    	android:contentDescription="@string/teamlist_add_content_description"/>
       
    34 
       
    35 </RelativeLayout>