71 lines
No EOL
2.4 KiB
XML
71 lines
No EOL
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="?attr/bg_color"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal" >
|
|
|
|
<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" />
|
|
|
|
<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" >
|
|
|
|
<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" />
|
|
|
|
<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>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?android:attr/listDivider"
|
|
android:focusable="false" />
|
|
|
|
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?android:attr/listDivider"
|
|
android:focusable="false" />
|
|
|
|
<ListView
|
|
android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
</ListView>
|
|
|
|
|
|
<include layout="@layout/map_route_prepare_bottom" />
|
|
|
|
</LinearLayout> |