71 lines
No EOL
2.6 KiB
XML
71 lines
No EOL
2.6 KiB
XML
<?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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/bg_color"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/searchListItemLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true"
|
|
android:minHeight="60dp"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/handle_view"
|
|
android:layout_width="56dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="4dp"
|
|
android:focusable="false"
|
|
android:scaleType="centerInside"
|
|
android:src="@drawable/ic_action_reorder"
|
|
android:tint="?attr/secondary_icon_color" />
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:scaleType="centerInside"
|
|
android:tint="?attr/primary_icon_color"
|
|
android:src="@drawable/ic_map" />
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1"
|
|
android:paddingRight="16dp"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
tools:text="Add marker" />
|
|
|
|
<ImageView
|
|
android:id="@+id/closeImageButton"
|
|
android:layout_width="56dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:scaleType="centerInside"
|
|
android:src="@drawable/ic_action_remove_dark"
|
|
android:contentDescription="@string/action_delete"
|
|
android:tint="?attr/secondary_icon_color" />
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginLeft="72dp"
|
|
android:background="?attr/dashboard_divider" />
|
|
|
|
</LinearLayout> |