2018-02-05 16:50:56 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-10-30 23:34:26 +07:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-02-05 16:50:56 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2021-10-30 23:34:26 +07:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
2018-02-05 16:50:56 -05:00
|
|
|
|
2020-02-21 18:41:37 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2021-10-30 23:34:26 +07:00
|
|
|
android:layout_width="0dp"
|
2020-02-21 18:41:37 -05:00
|
|
|
android:layout_height="wrap_content"
|
2021-10-30 23:34:26 +07:00
|
|
|
android:layout_weight="1"
|
2021-05-22 21:10:41 +07:00
|
|
|
android:paddingHorizontal="16dp"
|
|
|
|
android:paddingVertical="8dp"
|
2021-10-03 23:32:04 +07:00
|
|
|
android:textAppearance="@style/TextAppearance.Tachiyomi.SectionHeader"
|
2020-02-21 18:43:50 -05:00
|
|
|
tools:text="Title" />
|
2020-01-09 19:10:55 -05:00
|
|
|
|
2021-10-30 23:34:26 +07: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>
|