39 lines
No EOL
1.2 KiB
XML
39 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/header_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="@dimen/list_header_height"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="@dimen/list_header_padding">
|
|
|
|
<CheckBox
|
|
android:id="@+id/select_all"
|
|
android:focusable="false"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="@dimen/list_header_text_left_margin"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView
|
|
android:id="@+id/header"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
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"/>
|
|
</LinearLayout> |