Fix color
This commit is contained in:
parent
855607fd28
commit
30398fad48
2 changed files with 55 additions and 39 deletions
|
@ -1,37 +1,52 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout
|
||||||
android:orientation="vertical"
|
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:background="?attr/card_bg"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/message"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
|
||||||
<TextView android:id="@+id/message"
|
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:padding="@dimen/dashFavIconMargin"
|
android:layout_gravity="center_horizontal"
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:gravity="center_horizontal"
|
android:gravity="center_horizontal"
|
||||||
android:textColor="@color/dashboard_black"
|
android:padding="@dimen/dashFavIconMargin"
|
||||||
android:layout_gravity="center_horizontal"/>
|
android:textColor="?android:textColorPrimary"
|
||||||
<View android:layout_width="match_parent"
|
tools:text="@string/lorem_ipsum"/>
|
||||||
android:background="?attr/dashboard_divider"
|
|
||||||
android:layout_height="1dp"/>
|
<View
|
||||||
<LinearLayout android:layout_width="fill_parent"
|
android:layout_width="match_parent"
|
||||||
android:orientation="horizontal"
|
android:layout_height="1dp"
|
||||||
android:layout_height="@dimen/dashHeaderHeight">
|
android:background="?attr/dashboard_divider"/>
|
||||||
<Button android:id="@+id/local_downloads"
|
|
||||||
|
<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_width="0dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:text="@string/dash_download_manage"
|
android:text="@string/dash_download_manage"/>
|
||||||
style="?attr/dashboardGeneralButtonStyle"/>
|
|
||||||
<View android:layout_width="1dp"
|
<View
|
||||||
android:background="?attr/dashboard_divider"
|
android:layout_width="1dp"
|
||||||
android:layout_height="match_parent"/>
|
android:layout_height="match_parent"
|
||||||
<Button android:id="@+id/download_new_map"
|
android:background="?attr/dashboard_divider"/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/download_new_map"
|
||||||
|
style="?attr/dashboardGeneralButtonStyle"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_weight="1"
|
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/dash_download_new_one"
|
android:layout_weight="1"
|
||||||
style="?attr/dashboardGeneralButtonStyle"/>
|
android:text="@string/dash_download_new_one"/>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
|
@ -1,5 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
|
Loading…
Reference in a new issue