2020-08-17 01:08:09 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-09-05 20:28:41 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-17 01:08:09 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-09-05 20:28:41 +02:00
|
|
|
android:id="@+id/title_wrapper"
|
|
|
|
android:orientation="vertical"
|
2020-08-17 01:08:09 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-05 20:28:41 +02:00
|
|
|
android:layout_marginStart="48dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:background="?attr/selectableItemBackground">
|
2020-08-17 01:08:09 +02:00
|
|
|
|
2020-09-05 20:28:41 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_result_pref_title"
|
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:text="Title" />
|
2020-08-17 01:08:09 +02:00
|
|
|
|
2020-09-05 20:28:41 +02:00
|
|
|
<TextView
|
|
|
|
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" />
|
2020-08-17 01:08:09 +02:00
|
|
|
|
2020-09-05 20:28:41 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/search_result_pref_breadcrumb"
|
|
|
|
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"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/search_result_pref_summary"
|
|
|
|
tools:text="Location" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2020-08-19 16:28:29 +02:00
|
|
|
|