46 lines
No EOL
1.7 KiB
XML
46 lines
No EOL
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout android:id="@+id/maps"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/bg_cardui"
|
|
android:layout_marginBottom="4dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp">
|
|
<TextView android:text="@string/map_update"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:paddingTop="2dp"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginLeft="15dp"
|
|
android:textSize="14sp"
|
|
android:textColor="@color/dashboard_black"/>
|
|
<TextView android:id="@+id/update_count"
|
|
android:layout_marginLeft="2dp"
|
|
android:layout_width="wrap_content"
|
|
android:textColor="@color/dashboard_blue"
|
|
android:layout_height="wrap_content"/>
|
|
<ProgressBar android:id="@+id/main_progress"
|
|
android:layout_marginLeft="2dp"
|
|
android:indeterminate="true"
|
|
android:indeterminateOnly="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<View android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"/>
|
|
<Button android:id="@+id/show_all"
|
|
android:text="@string/show_all"
|
|
style="@style/DashboardGeneralButton"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/updates_items"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout> |