OsmAnd/OsmAnd/res/layout/plan_route_settings.xml

75 lines
2.7 KiB
XML
Raw Normal View History

2014-03-16 17:03:59 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2015-04-20 02:04:35 +02:00
android:layout_width="fill_parent"
android:layout_height="fill_parent"
2015-12-08 19:50:08 +01:00
android:background="?attr/bottom_menu_view_bg"
2015-03-25 20:23:25 +01:00
android:orientation="vertical" >
2014-03-16 23:12:04 +01:00
2015-12-08 19:50:08 +01:00
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
2015-03-25 20:23:25 +01:00
2015-12-08 19:50:08 +01:00
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_gravity="bottom"
android:background="?attr/dashboard_divider"
android:focusable="false"/>
2015-04-19 16:34:51 +02:00
<LinearLayout
2015-12-08 19:50:08 +01:00
android:layout_width="fill_parent"
2015-04-19 16:34:51 +02:00
android:layout_height="wrap_content"
2015-12-08 19:50:08 +01:00
android:orientation="horizontal">
2015-03-25 20:23:25 +01:00
2015-12-08 19:50:08 +01:00
<LinearLayout
android:id="@+id/app_modes"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:gravity="left"
android:orientation="horizontal"/>
2015-04-19 16:34:51 +02:00
2015-12-08 19:50:08 +01:00
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="@dimen/list_content_padding"
android:orientation="horizontal">
2014-03-16 23:12:04 +01:00
2015-12-08 19:50:08 +01:00
<ImageView
android:id="@+id/avoid_roads"
android:layout_width="@dimen/list_item_height"
android:layout_height="@dimen/list_item_height"
android:background="?attr/dashboard_button"
android:scaleType="center"
android:src="@drawable/ic_action_road_works_dark"/>
2014-03-16 23:12:04 +01:00
2015-12-08 19:50:08 +01:00
<ImageView
android:id="@+id/mute"
android:layout_width="@dimen/list_item_height"
android:layout_height="@dimen/list_item_height"
android:background="?attr/dashboard_button"
android:scaleType="center"
android:src="@drawable/ic_action_volume_off"/>
</LinearLayout>
</LinearLayout>
</FrameLayout>
2015-04-19 16:34:51 +02:00
2014-03-16 17:03:59 +01:00
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
2015-04-20 02:04:35 +02:00
android:layout_height="0dp"
android:layout_weight="1">
2015-03-25 20:23:25 +01:00
</ListView>
2014-03-16 23:12:04 +01:00
2015-12-08 19:50:08 +01:00
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_gravity="bottom"
android:background="?attr/dashboard_divider"
android:focusable="false"/>
2015-04-19 23:14:25 +02:00
<include layout="@layout/map_route_prepare_bottom" />
2014-03-16 17:03:59 +01:00
</LinearLayout>