OsmAnd/OsmAnd/res/layout/dash_updates_fragment.xml

37 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2015-02-02 10:54:36 +01:00
<LinearLayout
android:id="@+id/maps"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2015-05-03 23:42:50 +02:00
android:background="?attr/bg_card"
2015-04-14 16:33:17 +02:00
android:layout_marginTop="@dimen/dash_margin"
android:layout_marginBottom="@dimen/dash_margin"
android:layout_marginLeft="@dimen/dash_margin_h"
android:layout_marginRight="@dimen/dash_margin_h"
2015-02-02 10:54:36 +01:00
android:orientation="vertical">
<LinearLayout
2015-02-02 10:54:36 +01:00
android:layout_width="match_parent"
android:layout_height="@dimen/list_header_height"
2015-02-02 10:54:36 +01:00
android:layout_gravity="center_vertical">
<TextView
android:id="@+id/header"
style="@style/DashboardSubHeader"
2015-02-02 10:54:36 +01:00
android:text="@string/map_update"/>
<Button
android:id="@+id/show_all"
style="@style/DashboardGeneralButton"
2015-03-08 22:23:08 +01:00
android:text="@string/shared_string_show_all"/>
</LinearLayout>
2015-02-02 10:54:36 +01:00
<LinearLayout
android:id="@+id/updates_items"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"/>
2015-02-02 10:54:36 +01:00
</LinearLayout>