2015-03-25 15:54:24 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-08-24 11:22:05 +02:00
|
|
|
<android.support.v7.widget.Toolbar
|
2015-03-25 15:54:24 +01:00
|
|
|
android:id="@+id/toolbar"
|
2015-08-24 11:22:05 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-03-25 15:54:24 +01:00
|
|
|
android:layout_width="fill_parent"
|
2015-03-26 01:21:30 +01:00
|
|
|
android:layout_height="@dimen/dashboard_map_toolbar"
|
2015-08-24 11:22:05 +02:00
|
|
|
android:background="@color/actionbar_light_color"
|
2015-03-25 15:54:24 +01:00
|
|
|
app:contentInsetLeft="4dp"
|
2015-08-24 11:22:05 +02:00
|
|
|
app:contentInsetStart="4dp">
|
2015-03-25 15:54:24 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/toolbar_back"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/back_to_map"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
2016-08-03 16:16:58 +02:00
|
|
|
android:layout_height="match_parent"
|
2015-03-25 15:54:24 +01:00
|
|
|
android:layout_gravity="left"
|
|
|
|
android:background="@drawable/dashboard_button_light"
|
|
|
|
android:scaleType="center"
|
2017-07-10 11:31:31 +02:00
|
|
|
android:src="@drawable/ic_arrow_back"
|
2015-08-24 11:22:05 +02:00
|
|
|
tools:visibility="visible"/>
|
2015-08-07 16:29:11 +02:00
|
|
|
|
2015-03-25 15:54:24 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/toolbar_list"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/backToMenu"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
2016-08-03 16:16:58 +02:00
|
|
|
android:layout_height="match_parent"
|
2015-08-24 11:22:05 +02:00
|
|
|
android:layout_gravity="left"
|
2015-03-25 15:54:24 +01:00
|
|
|
android:background="@drawable/dashboard_button_light"
|
|
|
|
android:scaleType="center"
|
2016-08-03 16:16:58 +02:00
|
|
|
android:src="@drawable/ic_navigation_drawer"
|
|
|
|
tools:visibility="gone"/>
|
2015-08-07 16:29:11 +02:00
|
|
|
|
2015-03-25 15:54:24 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/toolbar_settings"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/shared_string_settings"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
2016-08-03 16:16:58 +02:00
|
|
|
android:layout_height="match_parent"
|
2015-09-01 10:43:19 +02:00
|
|
|
android:layout_gravity="right"
|
2015-03-25 15:54:24 +01:00
|
|
|
android:background="@drawable/dashboard_button_light"
|
|
|
|
android:scaleType="center"
|
2015-09-14 10:02:59 +02:00
|
|
|
android:src="@drawable/ic_configure_screen_dark"/>
|
2015-08-24 11:22:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/toolbar_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="left"
|
|
|
|
android:scaleType="center"
|
|
|
|
android:textColor="@color/abc_primary_text_material_dark"
|
2016-08-03 16:16:58 +02:00
|
|
|
android:textSize="@dimen/abc_text_size_large_material"
|
2015-12-01 10:20:21 +01:00
|
|
|
tools:text="Toolbar"
|
2016-08-03 16:16:58 +02:00
|
|
|
tools:visibility="visible"/>
|
2015-08-24 11:22:05 +02:00
|
|
|
|
2015-03-25 18:42:07 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/toolbar_ok"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/shared_string_ok"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
2016-08-03 16:16:58 +02:00
|
|
|
android:layout_height="match_parent"
|
2015-03-25 18:42:07 +01:00
|
|
|
android:layout_gravity="right"
|
|
|
|
android:background="@drawable/dashboard_button_light"
|
|
|
|
android:scaleType="center"
|
2015-08-24 11:22:05 +02:00
|
|
|
android:src="@drawable/ic_action_done"/>
|
|
|
|
|
2015-03-25 18:42:07 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/toolbar_sort"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/intermediate_points_change_order"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
2016-08-03 16:16:58 +02:00
|
|
|
android:layout_height="match_parent"
|
2015-03-25 18:42:07 +01:00
|
|
|
android:layout_gravity="right"
|
|
|
|
android:background="@drawable/dashboard_button_light"
|
|
|
|
android:scaleType="center"
|
2015-08-24 11:22:05 +02:00
|
|
|
android:src="@drawable/ic_sort_waypoint_dark"/>
|
|
|
|
|
|
|
|
|
2015-03-25 18:42:07 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/toolbar_flat"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/drawer"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
2016-08-03 16:16:58 +02:00
|
|
|
android:layout_height="match_parent"
|
2015-03-25 18:42:07 +01:00
|
|
|
android:layout_gravity="right"
|
|
|
|
android:background="@drawable/dashboard_button_light"
|
|
|
|
android:scaleType="center"
|
2015-08-24 11:22:05 +02:00
|
|
|
android:src="@drawable/ic_flat_list_dark"
|
|
|
|
android:visibility="gone"/>
|
2015-03-25 15:54:24 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/toolbar_edit"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/shared_string_edit"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
2016-08-03 16:16:58 +02:00
|
|
|
android:layout_height="match_parent"
|
2015-03-25 15:54:24 +01:00
|
|
|
android:layout_gravity="right"
|
|
|
|
android:background="@drawable/dashboard_button_light"
|
|
|
|
android:scaleType="center"
|
2015-08-24 11:22:05 +02:00
|
|
|
android:src="@drawable/ic_action_edit_dark"
|
|
|
|
android:visibility="gone"/>
|
2015-08-07 16:29:11 +02:00
|
|
|
|
2015-03-25 15:54:24 +01:00
|
|
|
</android.support.v7.widget.Toolbar>
|