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

38 lines
1.3 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-09-23 10:33:43 +08:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2020-09-06 02:28:41 +08:00
android:id="@+id/title_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
2020-09-23 10:33:43 +08:00
android:orientation="vertical"
android:padding="16dp">
2020-09-06 02:28:41 +08:00
<TextView
android:id="@+id/search_result_pref_title"
2020-09-23 10:33:43 +08:00
android:layout_width="match_parent"
2020-09-06 02:28:41 +08:00
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItem"
2020-09-06 02:28:41 +08:00
tools:text="Title" />
2020-09-06 02:28:41 +08:00
<TextView
android:id="@+id/search_result_pref_summary"
2020-09-23 10:33:43 +08:00
android:layout_width="match_parent"
2020-09-06 02:28:41 +08:00
android:layout_height="wrap_content"
android:textAppearance="?attr/textAppearanceListItemSecondary"
android:textColor="?android:attr/textColorSecondary"
2020-09-06 02:28:41 +08:00
tools:text="Summary" />
2020-09-06 02:28:41 +08:00
<TextView
android:id="@+id/search_result_pref_breadcrumb"
2020-09-23 10:33:43 +08:00
android:layout_width="match_parent"
2020-09-06 02:28:41 +08:00
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="1"
2021-11-14 23:23:44 +08:00
android:textAppearance="?attr/textAppearanceBodySmall"
android:textColor="?android:attr/textColorPrimary"
2020-09-06 02:28:41 +08:00
tools:text="Location" />
2020-09-23 10:33:43 +08:00
</LinearLayout>