OsmAnd/OsmAnd/res/layout/route_info_layout.xml

44 lines
1.3 KiB
XML
Raw Normal View History

2017-02-15 17:15:23 +01:00
<?xml version="1.0" encoding="utf-8"?>
2019-03-01 12:35:59 +01:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/color_transparent">
<net.osmand.plus.mapcontextmenu.InterceptorLinearLayout
android:id="@+id/main_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2019-03-27 17:56:07 +01:00
<include layout="@layout/context_menu_top_shadow" />
2019-03-01 12:35:59 +01:00
<FrameLayout
android:id="@+id/bottom_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-03-27 17:56:07 +01:00
android:background="?attr/route_info_bg"
2019-03-01 12:35:59 +01:00
android:foregroundGravity="top|fill_horizontal">
<net.osmand.plus.LockableScrollView
android:id="@+id/route_menu_bottom_scroll"
android:layout_width="match_parent"
2019-03-27 17:56:07 +01:00
android:layout_height="match_parent"
android:background="?attr/route_info_bg">
2019-03-01 12:35:59 +01:00
<LinearLayout
android:id="@+id/route_menu_cards_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-03-27 17:56:07 +01:00
android:background="?attr/route_info_bg"
2019-03-01 12:35:59 +01:00
android:orientation="vertical"
2019-03-27 17:56:07 +01:00
android:paddingBottom="24dp">
2019-03-01 12:35:59 +01:00
</LinearLayout>
</net.osmand.plus.LockableScrollView>
</FrameLayout>
</net.osmand.plus.mapcontextmenu.InterceptorLinearLayout>
</FrameLayout>