2011-03-09 21:41:31 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-03-09 23:05:11 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-03-09 21:41:31 +00:00
|
|
|
android:orientation="vertical"
|
2011-03-09 23:05:11 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1" >
|
|
|
|
<ListView android:id="@android:id/list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:drawSelectorOnTop="false"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_height="wrap_content" android:layout_width="match_parent">
|
2011-03-09 22:56:52 +00:00
|
|
|
|
2011-03-09 23:05:11 +00:00
|
|
|
<Button android:id="@+id/subscribe"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Subscribe to selected matches"/>
|
|
|
|
|
|
|
|
<Button android:id="@+id/quit"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Quit" android:layout_width="wrap_content"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|