2015-02-16 16:01:08 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-01 12:32:01 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-02-16 16:01:08 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
2015-02-18 16:02:44 +01:00
|
|
|
android:id="@+id/header_layout"
|
2015-02-16 16:01:08 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-06 21:33:57 +01:00
|
|
|
android:minHeight="@dimen/list_header_height"
|
2015-02-16 16:01:08 +01:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="@dimen/list_header_padding">
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/select_all"
|
2015-02-17 11:29:53 +01:00
|
|
|
android:focusable="false"
|
2015-03-06 21:33:57 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-02-18 16:02:44 +01:00
|
|
|
android:layout_marginRight="@dimen/list_header_text_left_margin"
|
2015-02-16 16:01:08 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<TextView
|
2015-02-18 16:02:44 +01:00
|
|
|
android:id="@+id/header"
|
2015-02-16 16:01:08 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-06 21:33:57 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-02-16 16:01:08 +01:00
|
|
|
android:text="@string/download_tab_updates"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginLeft="0dp"
|
|
|
|
android:layout_marginRight="0dp"
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
android:layout_weight="1"/>
|
2017-11-20 16:31:36 +01:00
|
|
|
|
2017-11-18 23:12:04 +01:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/empty_view_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"/>
|
2015-02-16 16:01:08 +01:00
|
|
|
</LinearLayout>
|