32 lines
882 B
XML
32 lines
882 B
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/card_bg"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dashHeaderHeight"
|
|
android:layout_gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/header"
|
|
style="?attr/dashboardSubHeaderStyle"
|
|
android:text="@string/map_update"/>
|
|
|
|
<Button
|
|
android:id="@+id/show_all"
|
|
style="?attr/dashboardGeneralButtonStyle"
|
|
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>
|