74 lines
No EOL
2.4 KiB
XML
74 lines
No EOL
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/route_option_button"
|
|
android:layout_width="100dp"
|
|
android:layout_height="32dp"
|
|
android:orientation="horizontal"
|
|
tools:background="@drawable/btn_border_trans_dark">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/removable_option"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="visible">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/route_removable_option_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="start|center_vertical"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp">
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/route_removable_option_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:letterSpacing="@dimen/text_button_letter_spacing"
|
|
android:maxLines="1"
|
|
android:paddingBottom="3dp"
|
|
android:paddingTop="3dp"
|
|
android:text="@string/routing_attr_avoid_motorway_name"
|
|
android:textSize="@dimen/default_sub_text_size"
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
tools:ignore="UnusedAttribute"
|
|
tools:textColor="?attr/wikivoyage_active_color" />
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/title_divider"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="1dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:background="@color/description_font_and_bottom_sheet_icons" />
|
|
|
|
<ImageView
|
|
android:id="@+id/removable_option_icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end|center_vertical"
|
|
android:layout_marginLeft="1dp"
|
|
android:layout_marginRight="1dp"
|
|
android:paddingBottom="3dp"
|
|
android:paddingLeft="@dimen/route_info_icon_vertical_padding"
|
|
android:paddingRight="@dimen/route_info_icon_vertical_padding"
|
|
android:paddingTop="3dp"
|
|
tools:src="@drawable/ic_action_remove_dark" />
|
|
|
|
<View
|
|
android:id="@+id/options_divider_end"
|
|
android:layout_width="1dp"
|
|
android:layout_height="16dp"
|
|
android:layout_gravity="end|center_vertical" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout> |