87 lines
No EOL
3.3 KiB
XML
87 lines
No EOL
3.3 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:clickable="true"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/selectableItemBackground"
|
|
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:tint="?attr/secondary_icon_color"
|
|
android:src="@drawable/ic_action_reorder"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="8dp"
|
|
android:scaleType="centerInside"
|
|
android:tint="?attr/primary_icon_color"
|
|
android:src="@drawable/ic_action_flag_dark"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="8dp"
|
|
android:paddingTop="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="16dp"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
tools:text="Add marker"/>
|
|
|
|
<TextView
|
|
android:id="@+id/subtitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="@dimen/default_sub_text_size"
|
|
tools:text="Action 1"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<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:tint="?attr/secondary_icon_color"
|
|
android:contentDescription="@string/action_delete"
|
|
android:src="@drawable/ic_action_remove_dark"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
</LinearLayout> |