tachiyomi/app/src/main/res/layout/settings_search_controller_card.xml

36 lines
1.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-09-23 04:33:43 +02:00
<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"
2020-09-05 20:28:41 +02:00
android:id="@+id/title_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-09-23 04:33:43 +02:00
android:background="?attr/selectableItemBackground"
android:orientation="vertical"
android:padding="16dp">
2020-09-05 20:28:41 +02:00
<TextView
android:id="@+id/search_result_pref_title"
style="@style/TextAppearance.Regular.SubHeading"
2020-09-23 04:33:43 +02:00
android:layout_width="match_parent"
2020-09-05 20:28:41 +02:00
android:layout_height="wrap_content"
tools:text="Title" />
2020-09-05 20:28:41 +02:00
<TextView
android:id="@+id/search_result_pref_summary"
2020-09-23 04:33:43 +02:00
android:layout_width="match_parent"
2020-09-05 20:28:41 +02:00
android:layout_height="wrap_content"
tools:text="Summary" />
2020-09-05 20:28:41 +02:00
<TextView
android:id="@+id/search_result_pref_breadcrumb"
style="@style/TextAppearance.Regular.Caption"
2020-09-23 04:33:43 +02:00
android:layout_width="match_parent"
2020-09-05 20:28:41 +02:00
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
tools:text="Location" />
2020-09-23 04:33:43 +02:00
</LinearLayout>