OsmAnd/OsmAnd/res/layout/main.xml

104 lines
3.4 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2015-08-22 14:55:28 +02:00
<android.support.v4.widget.DrawerLayout
2015-08-24 11:22:05 +02:00
android:id="@+id/drawer_layout"
2015-08-22 14:55:28 +02:00
xmlns:android="http://schemas.android.com/apk/res/android"
2015-03-11 20:19:24 +01:00
android:layout_width="match_parent"
2015-08-22 14:55:28 +02:00
android:layout_height="match_parent">
2015-03-11 20:19:24 +01:00
<FrameLayout
2015-08-22 14:55:28 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2014-10-07 16:16:33 +02:00
2015-08-22 14:55:28 +02:00
<FrameLayout
android:id="@+id/MapViewWithLayers"
2015-03-11 20:19:24 +01:00
android:layout_width="fill_parent"
android:layout_height="fill_parent"
2015-08-22 14:55:28 +02:00
android:keepScreenOn="true"
android:orientation="vertical">
2014-10-07 16:16:33 +02:00
2015-08-22 14:55:28 +02:00
<ViewStub
android:id="@+id/atlasMapRendererViewStub"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:inflatedId="@+id/atlasMapRendererView"
android:layout="@layout/atlas_map_renderer_view"/>
2015-03-15 01:45:16 +01:00
2015-08-22 14:55:28 +02:00
<net.osmand.plus.views.OsmAndMapSurfaceView
android:id="@+id/MapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:contentDescription="@string/shared_string_map"
android:visibility="gone"/>
<net.osmand.plus.views.OsmAndMapLayersView
android:id="@+id/MapLayersView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:contentDescription="@string/shared_string_map"
android:visibility="gone"/>
</FrameLayout>
2016-12-28 16:33:40 +01:00
<FrameLayout
2015-08-22 14:55:28 +02:00
android:id="@+id/MapHudButtonsOverlay"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/map_hud_top"/>
<include layout="@layout/map_hud_bottom"/>
2016-12-28 16:33:40 +01:00
<include layout="@layout/map_hud_quick_actions"/>
</FrameLayout>
<FrameLayout
android:id="@+id/progress_layout_external"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone">
<include layout="@layout/map_progress_top"/>
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom">
<View
android:layout_width="match_parent"
android:layout_height="1px"/>
</FrameLayout>
2015-08-22 14:55:28 +02:00
<FrameLayout
android:id="@+id/routeMenuContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
2015-08-22 14:55:28 +02:00
<include
layout="@layout/dashboard_over_map"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<FrameLayout
android:id="@+id/fragmentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<View
android:layout_width="match_parent"
android:layout_height="match_parent"/>
2015-03-11 20:19:24 +01:00
</FrameLayout>
2014-10-07 16:16:33 +02:00
2015-08-22 14:55:28 +02:00
<ListView
android:id="@+id/menuItems"
android:layout_width="280dp"
2015-03-11 20:19:24 +01:00
android:layout_height="match_parent"
2015-08-22 14:55:28 +02:00
android:layout_gravity="left"
2016-01-22 14:27:04 +01:00
android:background="?attr/bg_color"
android:drawSelectorOnTop="true" />
2015-03-11 20:19:24 +01:00
2015-08-22 14:55:28 +02:00
</android.support.v4.widget.DrawerLayout>