96 lines
No EOL
2.9 KiB
XML
96 lines
No EOL
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_transparent">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/main_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/context_menu_top_shadow" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/bottom_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<include layout="@layout/plan_route_progress_bar"/>
|
|
|
|
<net.osmand.plus.LockableScrollView
|
|
android:id="@+id/route_menu_bottom_scroll"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/route_info_bg">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/route_menu_cards_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/route_info_bg"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/dialog_button_ex_height">
|
|
|
|
</LinearLayout>
|
|
|
|
</net.osmand.plus.LockableScrollView>
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/map_controls_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom">
|
|
|
|
<include
|
|
layout="@layout/map_ruler"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start|bottom"
|
|
android:layout_marginStart="@dimen/fab_margin_right"
|
|
android:layout_marginLeft="@dimen/fab_margin_right"
|
|
android:layout_marginEnd="@dimen/fab_margin_right"
|
|
android:layout_marginRight="@dimen/fab_margin_right"
|
|
tools:visibility="invisible" />
|
|
|
|
<include
|
|
layout="@layout/map_hud_controls"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end|bottom"
|
|
android:layout_marginStart="@dimen/fab_margin_right"
|
|
android:layout_marginLeft="@dimen/fab_margin_right"
|
|
android:layout_marginEnd="@dimen/fab_margin_right"
|
|
android:layout_marginRight="@dimen/fab_margin_right"
|
|
tools:visibility="invisible" />
|
|
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/control_buttons"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/buttons_shadow"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="10dp"
|
|
android:layout_gravity="bottom"
|
|
android:background="@drawable/bg_contextmenu_shadow_top_light" />
|
|
|
|
<include
|
|
layout="@layout/bottom_buttons"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dialog_button_ex_height"
|
|
android:layout_gravity="bottom" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |