379 lines
No EOL
17 KiB
XML
379 lines
No EOL
17 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
android:id="@+id/plan_route_info"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_transparent"
|
|
android:clickable="true">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/main_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:background="@drawable/bg_bottom_menu_dark"
|
|
android:clickable="true"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ModesLayout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/list_item_height"
|
|
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"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:id="@+id/waypoints"
|
|
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/map_action_waypoints"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<View
|
|
android:id="@+id/dividerModesLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/dashboard_divider_dark"
|
|
android:focusable="false"/>
|
|
</LinearLayout>
|
|
|
|
<ScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:fillViewport="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/FromLayout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/list_item_height"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/fromIcon"
|
|
android:layout_width="@dimen/standard_icon_size"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/list_content_padding"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:src="@drawable/map_default_location"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/fromTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:layout_marginTop="5dp"
|
|
android:text="@string/route_from"
|
|
android:textSize="@dimen/default_sub_text_size"/>
|
|
|
|
<Spinner
|
|
android:id="@+id/FromSpinner"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="-8dp"
|
|
android:background="@null"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/fromDropDownIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginRight="@dimen/list_header_text_left_margin"
|
|
android:src="@drawable/ic_action_arrow_drop_down"/>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/dividerFromDropDown"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/dashboard_divider_dark"
|
|
android:focusable="false"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ViaLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/list_item_height"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/viaIcon"
|
|
android:layout_width="@dimen/standard_icon_size"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/list_content_padding"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:src="@drawable/map_default_location"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/ViaSubView"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginTop="5dp"
|
|
android:gravity="left"
|
|
android:text="@string/route_via"
|
|
android:textSize="@dimen/default_sub_text_size"/>
|
|
|
|
<TextView
|
|
android:id="@+id/ViaView"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:gravity="left"
|
|
android:singleLine="true"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/viaLayoutDivider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/dashboard_divider_dark"
|
|
android:focusable="false"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ToLayout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/list_item_height"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/toIcon"
|
|
android:layout_width="@dimen/standard_icon_size"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/list_content_padding"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:src="@drawable/map_default_location"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/toTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginTop="5dp"
|
|
android:text="@string/route_to"
|
|
android:textSize="@dimen/default_sub_text_size">
|
|
</TextView>
|
|
|
|
<Spinner
|
|
android:id="@+id/ToSpinner"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="-8dp"
|
|
android:background="@null"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/toDropDownIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginRight="@dimen/list_header_text_left_margin"
|
|
android:src="@drawable/ic_action_arrow_drop_down"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/dividerToDropDown"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/dashboard_divider_dark"
|
|
android:focusable="false"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/RouteInfoControls"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/Info"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/dashboard_button"
|
|
android:minHeight="@dimen/list_item_height"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/Prev"
|
|
android:layout_width="@dimen/list_item_height"
|
|
android:layout_height="@dimen/list_item_height"
|
|
android:background="?attr/dashboard_button"
|
|
android:contentDescription="@string/shared_string_previous"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_prev"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/InfoIcon"
|
|
android:layout_width="@dimen/standard_icon_size"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="@dimen/list_content_padding"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:contentDescription="@string/info_button"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_action_info_dark"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/InfoDistance"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/DistanceTitle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginTop="5dp"
|
|
android:gravity="left"
|
|
android:text="@string/route_distance"
|
|
android:textSize="@dimen/default_sub_text_size"/>
|
|
|
|
<TextView
|
|
android:id="@+id/DistanceText"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:gravity="left"
|
|
android:singleLine="true"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/DurationIcon"
|
|
android:layout_width="@dimen/standard_icon_size"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="@dimen/list_content_padding"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:contentDescription="@string/info_button"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_action_time"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/InfoDuration"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/DurationTitle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginTop="5dp"
|
|
android:gravity="left"
|
|
android:text="@string/route_duration"
|
|
android:textSize="@dimen/default_sub_text_size"/>
|
|
|
|
<TextView
|
|
android:id="@+id/DurationText"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:gravity="left"
|
|
android:singleLine="true"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/InfoTextView"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical|left"
|
|
android:layout_margin="8dp"
|
|
android:layout_weight="1"
|
|
android:textSize="@dimen/default_desc_text_size"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/Next"
|
|
android:layout_width="@dimen/list_item_height"
|
|
android:layout_height="@dimen/list_item_height"
|
|
android:layout_marginLeft="5dp"
|
|
android:background="?attr/dashboard_button"
|
|
android:contentDescription="@string/shared_string_next"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_next"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
<View
|
|
android:id="@+id/dividerButtons"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_gravity="bottom"
|
|
android:background="@color/dashboard_divider_dark"
|
|
android:focusable="false"/>
|
|
|
|
<include layout="@layout/map_route_prepare_bottom"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |