83 lines
No EOL
2.6 KiB
XML
83 lines
No EOL
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/download_map_widget_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/list_background_color"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/list_content_padding"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:layout_marginTop="@dimen/list_content_padding"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
osmand:typeface="@string/font_roboto_regular"
|
|
tools:text="@string/download_detailed_map" />
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/fileSize"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?attr/active_color_basic"
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
android:paddingTop="@dimen/text_margin_small"
|
|
android:paddingBottom="@dimen/text_margin_small"
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
tools:text="139 MB" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/card_content_padding_large"
|
|
android:src="@drawable/img_download" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/text_margin_small"
|
|
android:layout_marginBottom="@dimen/content_padding_small">
|
|
|
|
<include
|
|
android:id="@+id/btnClose"
|
|
layout="@layout/bottom_sheet_dialog_button" />
|
|
|
|
<View
|
|
android:id="@+id/buttons_divider"
|
|
android:layout_width="@dimen/content_padding"
|
|
android:layout_height="match_parent" />
|
|
|
|
<include
|
|
android:id="@+id/btnDownload"
|
|
layout="@layout/bottom_sheet_dialog_button" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |