60a6b92d9a
Only layout files are touched and no new strings added.
102 lines
No EOL
4 KiB
XML
102 lines
No EOL
4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:background="?attr/bottom_menu_view_bg"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="56dp"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/titleIconImageView"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:scaleType="center"
|
|
tools:background="@color/color_warning"
|
|
tools:src="@drawable/ic_map"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/titleTextView"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:text="@string/map_downloaded"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/dialog_header_text_size"/>
|
|
|
|
<ImageButton
|
|
android:id="@+id/closeImageButton"
|
|
android:contentDescription="@string/shared_string_close"
|
|
android:layout_width="44dp"
|
|
android:layout_height="44dp"
|
|
android:layout_gravity="center"
|
|
style="@style/Widget.AppCompat.Button.Borderless"
|
|
tools:background="@color/color_warning"
|
|
android:src="@drawable/ic_action_remove_dark"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/descriptionTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:text="@string/map_downloaded_descr"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
<Button
|
|
android:id="@+id/actionButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
style="@style/Widget.AppCompat.Button.Borderless"
|
|
android:textColor="?attr/contextMenuButtonColor"
|
|
tools:background="@color/color_warning"
|
|
android:text="@string/go_to_map"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |