2015-02-02 17:02:21 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:layout_height="0dp"
|
2015-03-06 21:16:08 +01:00
|
|
|
android:layout_weight="1"/>
|
2015-02-02 17:02:21 +01:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/clearAll"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:background="?attr/downloadButtonBackground"
|
|
|
|
android:textColor="?attr/pstsTextColor"
|
2015-02-02 17:02:21 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|