85 lines
No EOL
2.7 KiB
XML
85 lines
No EOL
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/pstsTabBackground"
|
|
android:minHeight="@dimen/dashboard_map_toolbar"
|
|
android:theme="?attr/toolbar_theme"
|
|
app:contentInsetLeft="72dp"
|
|
app:contentInsetStart="72dp"
|
|
app:contentInsetRight="0dp"
|
|
app:contentInsetEnd="0dp" />
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<include
|
|
layout="@layout/free_version_banner"
|
|
android:background="#F00" />
|
|
|
|
<include layout="@layout/progress_with_two_texts" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/activity_background_basic">
|
|
|
|
<ScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="none">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/description_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<net.osmand.plus.LockableViewPager
|
|
android:id="@+id/images_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/download_description_images_height"
|
|
tools:visibility="gone" />
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/list_background_color"
|
|
android:letterSpacing="@dimen/text_button_letter_spacing"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingTop="@dimen/list_header_settings_top_margin"
|
|
android:paddingRight="@dimen/content_padding"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
app:typeface="@string/font_roboto_regular"
|
|
tools:text="@string/plugin_disabled_descr" />
|
|
|
|
<include layout="@layout/card_bottom_divider" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/buttons_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:background="?attr/list_background_color"
|
|
android:orientation="vertical" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout> |