OsmAnd/OsmAnd/res/layout/map_route_prepare_bottom.xml

67 lines
2.5 KiB
XML
Raw Normal View History

2015-04-19 23:14:25 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map_route_preparation_layout"
android:layout_width="match_parent"
android:layout_height="@dimen/map_route_buttons_height"
android:layout_gravity="bottom" >
<ImageButton
android:id="@+id/map_cancel_route_button"
android:contentDescription="@string/cancel_route"
2015-04-19 23:14:25 +02:00
android:layout_width="@dimen/map_route_buttons_width"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
2015-12-08 19:50:08 +01:00
android:background="?attr/dashboard_button"
2015-04-19 23:14:25 +02:00
android:src="@drawable/ic_action_test_light" />
2015-12-08 19:50:08 +01:00
<View
2015-12-11 14:29:36 +01:00
android:id="@+id/dividerBtn1"
2015-12-08 19:50:08 +01:00
android:layout_width="1dp"
android:layout_height="match_parent"
2015-12-11 14:29:36 +01:00
android:background="@color/dashboard_divider_dark"/>
2015-12-08 19:50:08 +01:00
2015-04-19 23:14:25 +02:00
<ImageButton
android:id="@+id/map_waypoints_route_button"
android:contentDescription="@string/waypoints"
2015-04-19 23:14:25 +02:00
android:layout_width="@dimen/map_route_buttons_width"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
2015-12-08 19:50:08 +01:00
android:background="?attr/dashboard_button"
2015-04-19 23:14:25 +02:00
android:src="@drawable/ic_action_test_light" />
2015-12-08 19:50:08 +01:00
<View
2015-12-11 14:29:36 +01:00
android:id="@+id/dividerBtn2"
2015-12-08 19:50:08 +01:00
android:layout_width="1dp"
android:layout_height="match_parent"
2015-12-11 14:29:36 +01:00
android:background="@color/dashboard_divider_dark"/>
2015-12-08 19:50:08 +01:00
2015-04-19 23:14:25 +02:00
<ImageButton
android:id="@+id/map_options_route_button"
android:contentDescription="@string/shared_string_more"
2015-04-19 23:14:25 +02:00
android:layout_width="@dimen/map_route_buttons_width"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
2015-12-08 19:50:08 +01:00
android:background="?attr/dashboard_button"
2015-04-19 23:14:25 +02:00
android:src="@drawable/ic_action_test_light" />
2015-12-08 19:50:08 +01:00
<View
2015-12-11 14:29:36 +01:00
android:id="@+id/dividerBtn3"
2015-12-08 19:50:08 +01:00
android:layout_width="1dp"
android:layout_height="match_parent"
2015-12-11 14:29:36 +01:00
android:background="@color/dashboard_divider_dark"/>
2015-12-08 19:50:08 +01:00
2015-04-19 23:14:25 +02:00
<TextView
android:id="@+id/map_go_route_button"
android:layout_height="match_parent"
2015-04-22 00:47:42 +02:00
android:layout_width="fill_parent"
2015-04-19 23:14:25 +02:00
android:layout_gravity="center_vertical"
2015-12-08 19:50:08 +01:00
android:background="?attr/dashboard_button"
2015-04-19 23:14:25 +02:00
android:drawableLeft="@drawable/ic_action_test_light"
android:drawablePadding="4dp"
android:gravity="center_vertical"
android:paddingLeft="12dp"
android:textSize="@dimen/default_list_text_size"
android:textStyle="bold" />
</LinearLayout>