2020-01-06 03:43:07 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 07:43:50 +08:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-28 05:59:52 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-01-06 03:43:07 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/listPreferredItemHeightSmall"
|
2020-09-28 06:06:27 +08:00
|
|
|
android:background="?android:attr/colorBackground"
|
2021-05-23 00:02:49 +08:00
|
|
|
android:gravity="center_vertical"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:orientation="horizontal"
|
2020-01-10 08:10:55 +08:00
|
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
|
2020-01-06 03:43:07 +08:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:layout_weight="1"
|
2020-01-06 03:43:07 +08:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2021-10-04 00:32:04 +08:00
|
|
|
android:textAppearance="@style/TextAppearance.Tachiyomi.SectionHeader"
|
2020-02-22 07:43:50 +08:00
|
|
|
tools:text="Header" />
|
2020-01-06 03:43:07 +08:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/expand_icon"
|
|
|
|
android:layout_width="wrap_content"
|
2020-06-23 20:45:36 +08:00
|
|
|
android:layout_height="wrap_content"
|
2021-06-20 03:45:16 +08:00
|
|
|
app:tint="?attr/colorOnBackground" />
|
2020-01-06 03:43:07 +08:00
|
|
|
|
2020-01-10 08:10:55 +08:00
|
|
|
</LinearLayout>
|