Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Marchuk <alexm@maps.me>2015-09-02 14:05:44 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:03:29 +0300
commitcacab2d7c64b40297d51ef34a55c46b84a77a664 (patch)
tree69849654c8a5d41de5c709039cec1399dcbd84a9 /android
parentf88c9b28435c3a0aa85b9721eb1e362468b2fca2 (diff)
[android] fix: Side panel moved behind menu line on tables.
Diffstat (limited to 'android')
-rw-r--r--android/res/layout-w840dp/activity_map.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/android/res/layout-w840dp/activity_map.xml b/android/res/layout-w840dp/activity_map.xml
index 1f2307936a..7dd291f0dc 100644
--- a/android/res/layout-w840dp/activity_map.xml
+++ b/android/res/layout-w840dp/activity_map.xml
@@ -14,21 +14,12 @@
android:id="@+id/navigation_buttons"
layout="@layout/map_navigation_buttons"/>
- <FrameLayout
- android:id="@id/fragment_container"
- android:layout_width="@dimen/panel_width"
- android:layout_height="match_parent"
- android:background="@android:color/white"
- android:elevation="@dimen/navigation_elevation"
- android:visibility="gone"
- tools:visibility="visible"/>
-
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/margin_base"
android:clipToPadding="false"
- android:layout_toRightOf="@id/fragment_container"
+ android:layout_toRightOf="@+id/fragment_container"
android:layout_alignWithParentIfMissing="true">
<include android:id="@+id/toolbar_search"
layout="@layout/toolbar_with_search"
@@ -67,4 +58,13 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"/>
+
+ <FrameLayout
+ android:id="@+id/fragment_container"
+ android:layout_width="@dimen/panel_width"
+ android:layout_height="match_parent"
+ android:background="@android:color/white"
+ android:elevation="@dimen/navigation_elevation"
+ android:visibility="gone"
+ tools:visibility="visible"/>
</RelativeLayout> \ No newline at end of file