2019-08-21 10:21:17 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-10-03 14:31:55 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-08-21 10:21:17 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-18 05:34:43 +02:00
|
|
|
android:layout_height="match_parent">
|
2019-08-21 10:21:17 +02:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2020-03-01 09:30:33 +01:00
|
|
|
android:id="@+id/appbar_layout_settings_activity"
|
2019-08-21 10:21:17 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
2020-03-01 09:30:33 +01:00
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
2019-08-21 10:21:17 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-03-01 09:30:33 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
app:titleEnabled="false"
|
|
|
|
app:toolbarId="@+id/toolbar_post_text_activity">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar_settings_activity"
|
|
|
|
android:layout_width="match_parent"
|
2020-06-10 09:43:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
2020-03-01 09:30:33 +01:00
|
|
|
app:navigationIcon="?attr/homeAsUpIndicator"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
2019-08-21 10:21:17 +02:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/frame_layout_settings_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|