2020-08-16 19:08:09 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/title_wrapper"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-08-19 10:28:29 -04:00
|
|
|
android:layout_marginStart="@dimen/search_result_wrapper_margin_start"
|
|
|
|
android:layout_marginTop="@dimen/search_result_wrapper_margin_top"
|
|
|
|
android:layout_marginBottom="@dimen/search_result_wrapper_margin_bottom"
|
2020-08-16 19:08:09 -04:00
|
|
|
android:background="?attr/selectableItemBackground">
|
|
|
|
|
|
|
|
<TextView
|
2020-08-19 10:28:29 -04:00
|
|
|
android:id="@+id/search_result_pref_title"
|
2020-08-16 19:08:09 -04:00
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-19 10:28:29 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-08-16 19:08:09 -04:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:text="Title" />
|
|
|
|
|
|
|
|
<TextView
|
2020-08-19 10:28:29 -04:00
|
|
|
android:id="@+id/search_result_pref_summary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/search_result_pref_title"
|
|
|
|
tools:text="Summary" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_result_pref_breadcrumb"
|
2020-08-16 19:08:09 -04:00
|
|
|
style="@style/TextAppearance.Regular.Caption"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-08-19 10:28:29 -04:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/search_result_pref_summary"
|
|
|
|
tools:text="Location" />
|
2020-08-16 19:08:09 -04:00
|
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|