37 lines
No EOL
1.7 KiB
XML
37 lines
No EOL
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/bg_cardui"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView android:id="@+id/message"
|
|
android:layout_height="wrap_content"
|
|
android:padding="@dimen/dashFavIconMargin"
|
|
android:layout_width="match_parent"
|
|
android:gravity="center_horizontal"
|
|
android:textColor="@color/dashboard_black"
|
|
android:layout_gravity="center_horizontal"/>
|
|
<View android:layout_width="match_parent"
|
|
android:background="@color/dashboard_divider"
|
|
android:layout_height="1dp"/>
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
android:orientation="horizontal"
|
|
android:layout_height="@dimen/dashHeaderHeight">
|
|
<Button android:id="@+id/local_downloads"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:text="@string/dash_download_manage"
|
|
style="@style/DashboardGeneralButton"/>
|
|
<View android:layout_width="1dp"
|
|
android:background="@color/dashboard_divider"
|
|
android:layout_height="match_parent"/>
|
|
<Button android:id="@+id/download_new_map"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/dash_download_new_one"
|
|
style="@style/DashboardGeneralButton"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |