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