OsmAnd/OsmAnd/res/layout/update_index.xml

38 lines
1.2 KiB
XML
Raw Normal View History

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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/header_layout"
2015-02-16 16:01:08 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
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"
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
android:id="@+id/header"
2015-02-16 16:01:08 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/download_tab_updates"/>
</LinearLayout>
<ListView
android:id="@android:id/list"
style="@style/OsmandListView"
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>