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"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/searchListItemLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="48dp"
|
2016-12-23 14:35:37 +01:00
|
|
|
android:paddingRight="24dp"
|
|
|
|
android:paddingLeft="24dp"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:paddingStart="24dp"
|
2020-03-03 14:24:21 +01:00
|
|
|
android:paddingEnd="24dp"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:orientation="horizontal">
|
2016-12-22 16:43:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/image"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:scaleType="centerInside"
|
2019-07-04 18:58:10 +02:00
|
|
|
android:tint="?attr/default_icon_color"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:src="@drawable/ic_action_flag_dark"
|
|
|
|
android:layout_marginEnd="16dp" />
|
2016-12-22 16:43:47 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/default_list_text_size"
|
|
|
|
tools:text="Add marker" />
|
|
|
|
|
|
|
|
</LinearLayout>
|