2020-08-16 19:08:09 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-09-22 22:33:43 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-16 19:08:09 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-09-05 14:28:41 -04:00
|
|
|
android:id="@+id/title_wrapper"
|
2020-08-16 19:08:09 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-22 22:33:43 -04:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="16dp">
|
2020-08-16 19:08:09 -04:00
|
|
|
|
2020-09-05 14:28:41 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_result_pref_title"
|
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
2020-09-22 22:33:43 -04:00
|
|
|
android:layout_width="match_parent"
|
2020-09-05 14:28:41 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:text="Title" />
|
2020-08-16 19:08:09 -04:00
|
|
|
|
2020-09-05 14:28:41 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_result_pref_summary"
|
2020-09-22 22:33:43 -04:00
|
|
|
android:layout_width="match_parent"
|
2020-09-05 14:28:41 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:text="Summary" />
|
2020-08-16 19:08:09 -04:00
|
|
|
|
2020-09-05 14:28:41 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_result_pref_breadcrumb"
|
|
|
|
style="@style/TextAppearance.Regular.Caption"
|
2020-09-22 22:33:43 -04:00
|
|
|
android:layout_width="match_parent"
|
2020-09-05 14:28:41 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
tools:text="Location" />
|
2020-09-22 22:33:43 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|
2020-08-19 10:28:29 -04:00
|
|
|
|