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:
authorDmitry Yunitsky <yunik@mapswithme.com>2014-07-08 22:13:33 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:20:00 +0300
commitc23332c3569b43ad1cc643f378d6600d41725fa7 (patch)
treee057844f332d611924fc0e9d791871ca23e886bf /android/flavors
parent9bcbe1394a185b9a7ff9567e37aee2e202864bb1 (diff)
Added correct icons and colors, swapped options menu with vertical toolbar menu(as in iOS).
Diffstat (limited to 'android/flavors')
-rw-r--r--android/flavors/lite/res/layout/map_bottom_vertical_toolbar.xml55
1 files changed, 55 insertions, 0 deletions
diff --git a/android/flavors/lite/res/layout/map_bottom_vertical_toolbar.xml b/android/flavors/lite/res/layout/map_bottom_vertical_toolbar.xml
new file mode 100644
index 0000000000..4034c58561
--- /dev/null
+++ b/android/flavors/lite/res/layout/map_bottom_vertical_toolbar.xml
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+
+ <ImageButton
+ android:id="@+id/btn_buy_pro"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/bottom_panel_height"
+ android:background="@drawable/bg_toolbar_button_selector"
+ android:src="@drawable/ic_menu_buy_pro"/>
+
+ <View
+ style="@style/drawerSeparator"/>
+
+ <ImageButton
+ android:id="@+id/btn_download_maps"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/bottom_panel_height"
+ android:background="@drawable/bg_toolbar_button_selector"
+ android:src="@drawable/ic_menu_about"/>
+
+ <View
+ style="@style/drawerSeparator"/>
+
+ <ImageButton
+ android:id="@+id/btn_share"
+ style="@style/Widget.MapButtonBottom"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/bottom_panel_height"
+ android:src="@drawable/ic_menu_send_my_location"/>
+
+ <View
+ style="@style/drawerSeparator"/>
+
+ <ImageButton
+ android:id="@+id/btn_more_apps"
+ style="@style/Widget.MapButtonBottom"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/bottom_panel_height"
+ android:src="@drawable/ic_menu_more_apps"/>
+
+ <View
+ style="@style/drawerSeparator"/>
+
+ <ImageButton
+ android:id="@+id/btn_settings"
+ style="@style/Widget.MapButtonBottom"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/bottom_panel_height"
+ android:src="@drawable/ic_menu_settings"/>
+
+</LinearLayout> \ No newline at end of file