2020-08-13 13:54:36 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-09-12 01:28:33 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-09-16 18:29:31 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-08-13 13:54:36 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-09-12 01:28:33 +05:30
|
|
|
android:background="?attr/colorSurface"
|
|
|
|
android:fitsSystemWindows="true">
|
2020-08-13 13:54:36 +05:30
|
|
|
|
2021-09-12 01:28:33 +05:30
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appBarLayout"
|
2020-08-13 13:54:36 +05:30
|
|
|
android:layout_width="match_parent"
|
2021-09-12 01:28:33 +05:30
|
|
|
android:layout_height="wrap_content"
|
2021-09-16 18:29:31 +05:30
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
app:liftOnScroll="true">
|
2020-08-13 13:54:36 +05:30
|
|
|
|
2021-09-12 01:28:33 +05:30
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black"
|
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceNormal"
|
|
|
|
tools:title="@string/action_settings" />
|
2020-08-13 13:54:36 +05:30
|
|
|
|
2021-09-12 01:28:33 +05:30
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2021-09-09 00:00:20 +05:30
|
|
|
|
2021-09-12 01:28:33 +05:30
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/contentFrame"
|
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:defaultNavHost="true"
|
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
|
|
|
app:navGraph="@navigation/settings_graph" />
|
2021-09-09 00:00:20 +05:30
|
|
|
|
2021-09-12 01:28:33 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|