2022-02-24 13:40:28 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="48dp"
|
2022-09-22 13:25:42 -03:00
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:viewBindingIgnore="true">
|
2022-02-24 13:40:28 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/section_header"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingStart="@dimen/dsl_settings_gutter"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:paddingEnd="@dimen/dsl_settings_gutter"
|
|
|
|
android:paddingBottom="12dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:textAppearance="@style/Signal.Text.TitleSmall"
|
2022-02-24 13:40:28 -04:00
|
|
|
tools:text="Section Header" />
|
|
|
|
|
2022-09-22 13:25:42 -03:00
|
|
|
<com.google.android.material.button.MaterialButton
|
2022-02-24 13:40:28 -04:00
|
|
|
android:id="@+id/section_header_action"
|
2022-11-10 10:51:21 -05:00
|
|
|
style="@style/Signal.Widget.Button.Large.Tonal"
|
2022-02-24 13:40:28 -04:00
|
|
|
android:layout_width="wrap_content"
|
2022-09-22 13:25:42 -03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginStart="@dimen/dsl_settings_gutter"
|
|
|
|
android:layout_marginEnd="@dimen/dsl_settings_gutter"
|
2022-02-24 13:40:28 -04:00
|
|
|
android:visibility="gone"
|
2022-09-22 13:25:42 -03:00
|
|
|
app:icon="@drawable/ic_plus_12"
|
|
|
|
app:iconSize="12dp"
|
|
|
|
app:materialThemeOverlay="@style/ThemeOverlay.Signal.Button.Surface2"
|
2022-02-24 13:40:28 -04:00
|
|
|
tools:text="New Story"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
</LinearLayout>
|