OsmAnd/OsmAnd/res/layout/dash_updates_fragment.xml
Victor Shcherb 78836e14a6 Update bg
2015-05-03 23:42:50 +02:00

36 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/maps"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/bg_card"
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"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/list_header_height"
android:layout_gravity="center_vertical">
<TextView
android:id="@+id/header"
style="@style/DashboardSubHeader"
android:text="@string/map_update"/>
<Button
android:id="@+id/show_all"
style="@style/DashboardGeneralButton"
android:text="@string/shared_string_show_all"/>
</LinearLayout>
<LinearLayout
android:id="@+id/updates_items"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"/>
</LinearLayout>