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"
|
|
|
|
android:minHeight="44dp"
|
2018-11-30 16:20:16 +01:00
|
|
|
android:orientation="vertical">
|
2018-11-28 18:29:35 +01:00
|
|
|
|
2018-11-30 16:20:16 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2018-11-28 18:29:35 +01:00
|
|
|
android:layout_height="wrap_content"
|
2018-11-30 16:20:16 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:minHeight="44dp"
|
|
|
|
android:orientation="horizontal">
|
2018-11-28 18:29:35 +01:00
|
|
|
|
2018-11-30 16:20:16 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginLeft="64dp"
|
|
|
|
android:layout_marginStart="64dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/search_radius_proximity"
|
|
|
|
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"
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:textColor="@color/color_myloc_distance"
|
|
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
|
|
tools:text="500 m" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/bottom_divider"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginTop="8dp" />
|
2018-11-28 18:29:35 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|