31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
|
||
|
<com.google.android.material.appbar.AppBarLayout
|
||
|
android:id="@+id/app_bar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="?attr/actionBarSize"
|
||
|
android:fitsSystemWindows="true"
|
||
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
|
||
|
|
||
|
<androidx.appcompat.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="?attr/actionBarSize"
|
||
|
app:layout_collapseMode="pin"
|
||
|
app:layout_scrollFlags="scroll|enterAlways"
|
||
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
|
||
|
|
||
|
</com.google.android.material.appbar.AppBarLayout>
|
||
|
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/settings"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"/>
|
||
|
|
||
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|