OsmAnd/OsmAnd/res/layout/along_the_route_radius_simple.xml

52 lines
1.9 KiB
XML
Raw Normal View History

2018-11-28 18:29:35 +01:00
<?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:layout_width="match_parent"
android:layout_height="wrap_content"
2020-02-24 15:17:23 +01:00
android:minHeight="@dimen/bottom_sheet_descr_height"
android:orientation="vertical">
2018-11-28 18:29:35 +01:00
<LinearLayout
android:layout_width="match_parent"
2018-11-28 18:29:35 +01:00
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
2020-02-24 15:17:23 +01:00
android:minHeight="@dimen/bottom_sheet_descr_height"
android:orientation="horizontal">
2018-11-28 18:29:35 +01:00
<TextView
android:id="@+id/title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
2020-02-24 15:17:23 +01:00
android:layout_marginLeft="@dimen/bottom_sheet_divider_margin_start"
android:layout_marginStart="@dimen/bottom_sheet_divider_margin_start"
android:layout_weight="1"
android:text="@string/search_radius_proximity"
2019-11-01 14:03:36 +01:00
android:textColor="?android:textColorPrimary"
android:textSize="@dimen/default_desc_text_size" />
<net.osmand.plus.widgets.TextViewEx
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
2020-02-24 15:17:23 +01:00
android:layout_marginLeft="@dimen/content_padding"
android:layout_marginRight="@dimen/content_padding"
android:textColor="@color/color_myloc_distance"
android:textSize="@dimen/default_desc_text_size"
osmand:typeface="@string/font_roboto_medium"
2020-02-24 15:17:23 +01:00
tools:text="500 m"
android:layout_marginEnd="@dimen/content_padding"
android:layout_marginStart="@dimen/content_padding" />
</LinearLayout>
<View
android:id="@+id/bottom_divider"
android:layout_width="match_parent"
android:layout_height="1dp"
2020-02-24 15:17:23 +01:00
android:layout_marginTop="@dimen/content_padding_half"
2019-11-01 14:03:36 +01:00
android:background="?attr/divider_color_basic" />
2018-11-28 18:29:35 +01:00
</LinearLayout>