2016-12-22 16:43:47 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-13 13:34:36 +02:00
|
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
2016-12-22 16:43:47 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/searchListItemLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-28 09:13:41 +02:00
|
|
|
android:minHeight="@dimen/bottom_sheet_list_item_height"
|
|
|
|
android:paddingLeft="@dimen/content_padding"
|
|
|
|
android:paddingRight="@dimen/content_padding"
|
2020-03-03 14:24:21 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:orientation="horizontal">
|
2016-12-22 16:43:47 +01:00
|
|
|
|
|
|
|
|
2020-05-15 09:58:37 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2016-12-22 16:43:47 +01:00
|
|
|
android:id="@+id/image"
|
2020-05-28 09:13:41 +02:00
|
|
|
android:layout_width="@dimen/standard_icon_size"
|
|
|
|
android:layout_height="@dimen/standard_icon_size"
|
2016-12-22 16:43:47 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2020-05-28 09:13:41 +02:00
|
|
|
android:layout_marginRight="@dimen/content_padding"
|
2020-06-11 09:48:01 +02:00
|
|
|
android:layout_marginEnd="@dimen/content_padding"
|
2016-12-22 16:43:47 +01:00
|
|
|
android:scaleType="centerInside"
|
2019-07-04 18:58:10 +02:00
|
|
|
android:tint="?attr/default_icon_color"
|
2020-06-09 09:20:39 +02:00
|
|
|
osmand:srcCompat="@drawable/ic_action_flag" />
|
2016-12-22 16:43:47 +01:00
|
|
|
|
2020-05-28 09:13:41 +02:00
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
2016-12-22 16:43:47 +01:00
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2020-06-11 09:48:01 +02:00
|
|
|
android:layout_marginLeft="@dimen/content_padding"
|
|
|
|
android:layout_marginStart="@dimen/content_padding"
|
2016-12-22 16:43:47 +01:00
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/default_list_text_size"
|
2020-05-28 09:13:41 +02:00
|
|
|
osmand:typeface="@string/font_roboto_regular"
|
2016-12-22 16:43:47 +01:00
|
|
|
tools:text="Add marker" />
|
|
|
|
|
2020-05-13 13:34:36 +02:00
|
|
|
</LinearLayout>
|