2014-11-24 16:16:08 +01:00
|
|
|
<?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">
|
2014-11-24 16:16:08 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
2015-02-02 10:54:36 +01:00
|
|
|
android:layout_width="match_parent"
|
2015-04-17 00:37:39 +02:00
|
|
|
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"
|
2015-04-17 00:37:39 +02:00
|
|
|
style="@style/DashboardSubHeader"
|
2015-02-02 10:54:36 +01:00
|
|
|
android:text="@string/map_update"/>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_all"
|
2015-04-17 00:37:39 +02:00
|
|
|
style="@style/DashboardGeneralButton"
|
2015-03-08 22:23:08 +01:00
|
|
|
android:text="@string/shared_string_show_all"/>
|
2014-11-24 16:16:08 +01:00
|
|
|
</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"/>
|
2014-11-25 16:28:33 +01:00
|
|
|
|
2015-02-02 10:54:36 +01:00
|
|
|
</LinearLayout>
|