OsmAnd/OsmAnd/res/layout-land/dashboard_over_map.xml

55 lines
2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2015-03-06 19:37:54 +01:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dashboard"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#70000000"
android:orientation="vertical"
android:visibility="gone" >
2015-03-06 19:37:54 +01:00
<include
android:id="@+id/init_progress"
layout="@layout/application_loading"
android:visibility="gone" />
2015-03-08 20:59:18 +01:00
<LinearLayout
android:id="@+id/animateContent"
2015-03-09 00:18:20 +01:00
android:layout_width="match_parent"
2015-03-06 19:37:54 +01:00
android:layout_height="match_parent"
2015-03-08 20:59:18 +01:00
android:orientation="horizontal" >
2015-03-08 20:59:18 +01:00
<net.osmand.plus.dashboard.NotifyingScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_scroll"
android:layout_width="360dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fadeScrollbars="true" >
2015-03-08 12:30:12 +01:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2015-03-08 20:59:18 +01:00
android:orientation="vertical" >
2015-03-08 12:30:12 +01:00
2015-03-08 20:59:18 +01:00
<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
<net.osmand.plus.activities.search.toolbar.SplitToolbar
android:id="@+id/bottomControls"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="?attr/bottomToolBarColor" />
</LinearLayout>
</net.osmand.plus.dashboard.NotifyingScrollView>
2015-03-09 00:18:20 +01:00
<include
android:id="@+id/map_part_dashboard"
android:layout_width="match_parent"
2015-03-11 20:19:24 +01:00
android:layout_height="match_parent"
2015-03-09 00:18:20 +01:00
layout="@layout/map_view_on_dashboard" />
2015-03-08 20:59:18 +01:00
</LinearLayout>
</FrameLayout>