2018-02-06 05:50:56 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-10-31 00:34:26 +08:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-02-06 05:50:56 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2021-10-31 00:34:26 +08:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
2018-02-06 05:50:56 +08:00
|
|
|
|
2020-02-22 07:41:37 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2021-10-31 00:34:26 +08:00
|
|
|
android:layout_width="0dp"
|
2020-02-22 07:41:37 +08:00
|
|
|
android:layout_height="wrap_content"
|
2021-10-31 00:34:26 +08:00
|
|
|
android:layout_weight="1"
|
2021-05-22 22:10:41 +08:00
|
|
|
android:paddingHorizontal="16dp"
|
|
|
|
android:paddingVertical="8dp"
|
2021-10-04 00:32:04 +08:00
|
|
|
android:textAppearance="@style/TextAppearance.Tachiyomi.SectionHeader"
|
2020-02-22 07:43:50 +08:00
|
|
|
tools:text="Title" />
|
2020-01-10 08:10:55 +08:00
|
|
|
|
2021-10-31 00:34:26 +08:00
|
|
|
<Button
|
|
|
|
android:id="@+id/action_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:text="Button"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</LinearLayout>
|