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 <include layout="@layout/backbutton"/> |
|
10 |
|
11 <ImageButton |
|
12 android:id="@+id/btnAdd" |
|
13 android:layout_width="wrap_content" |
|
14 android:layout_height="50dip" |
|
15 android:layout_alignParentBottom="true" |
|
16 android:layout_alignParentRight="true" |
|
17 android:adjustViewBounds="true" |
|
18 android:scaleType="centerInside" |
|
19 android:background="@android:color/transparent" |
|
20 android:src="@drawable/settings"/> |
|
21 <TextView |
|
22 android:id="@+id/txtInfo" |
|
23 android:layout_height="wrap_content" |
|
24 android:layout_width="fill_parent" |
|
25 android:layout_alignParentBottom="true" |
|
26 android:layout_toRightOf="@id/btnBack" |
|
27 android:layout_toLeftOf="@id/btnAdd" |
|
28 android:layout_alignTop="@id/btnBack" |
|
29 android:layout_margin="3dp" |
|
30 android:gravity="center" |
|
31 android:background="@drawable/box"/> |
|
32 |
|
33 |
|
34 |
|
35 <LinearLayout |
|
36 android:orientation="horizontal" |
|
37 android:layout_width="fill_parent" |
|
38 android:layout_height="fill_parent" |
|
39 android:layout_above="@id/txtInfo" |
|
40 android:layout_margin="3dp"> |
|
41 |
|
42 <ListView |
|
43 android:id="@+id/selectedTeams" |
|
44 android:layout_height="fill_parent" |
|
45 android:layout_width="wrap_content" |
|
46 android:layout_margin="3dp" |
|
47 android:background="@drawable/box" |
|
48 android:layout_weight="1"/> |
|
49 |
|
50 <ListView |
|
51 android:id="@+id/availableTeams" |
|
52 android:layout_height="fill_parent" |
|
53 android:layout_width="wrap_content" |
|
54 android:layout_margin="3dp" |
|
55 android:background="@drawable/box" |
|
56 android:layout_weight="1"/> |
|
57 </LinearLayout> |
|
58 </RelativeLayout> |
|