OsmAnd/OsmAnd/res/layout/dashboard_over_map.xml

48 lines
1.8 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-06 19:37:54 +01:00
<net.osmand.plus.dashboard.NotifyingScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fadeScrollbars="true" >
2015-03-09 00:18:20 +01:00
<LinearLayout
2015-03-08 12:30:12 +01:00
android:id="@+id/animateContent"
2015-03-08 20:59:18 +01:00
android:layout_width="match_parent"
2015-03-09 00:18:20 +01:00
android:layout_height="wrap_content"
android:orientation="vertical" >
2015-03-08 20:59:18 +01:00
2015-03-09 00:18:20 +01:00
<include
android:id="@+id/map_part_dashboard"
android:layout_width="match_parent"
android:layout_height="@dimen/dashboard_map_top_padding"
layout="@layout/map_view_on_dashboard" />
2015-03-08 12:30:12 +01:00
<LinearLayout
2015-03-09 00:18:20 +01:00
android:id="@+id/content"
2015-03-08 12:30:12 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2015-03-09 00:18:20 +01:00
android:orientation="vertical" />
2015-03-08 20:59:18 +01:00
2015-03-09 00:18:20 +01:00
<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>
2015-03-06 19:37:54 +01:00
</net.osmand.plus.dashboard.NotifyingScrollView>
</FrameLayout>