1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4
5 <androidx.coordinatorlayout.widget.CoordinatorLayout
6 android:layout_width="match_parent"
7 android:layout_height="match_parent"
8 android:fitsSystemWindows="true">
9
10 <com.google.android.material.appbar.AppBarLayout
11 android:id="@+id/app_bar_layout"
12 android:layout_width="match_parent"
13 android:layout_height="wrap_content"
14 app:liftOnScroll="false">
15
16 <com.google.android.material.appbar.MaterialToolbar
17 android:id="@+id/material_toolbar"
18 android:layout_width="match_parent"
19 android:layout_height="?attr/actionBarSize"
20 app:navigationIcon="@drawable/ic_arrow_back_24dp" />
21 </com.google.android.material.appbar.AppBarLayout>
22
23 <androidx.fragment.app.FragmentContainerView
24 android:id="@+id/fragment_container"
25 android:layout_width="match_parent"
26 android:layout_height="match_parent"
27 android:fillViewport="true"
28 app:layout_behavior="@string/appbar_scrolling_view_behavior" />
29 </androidx.coordinatorlayout.widget.CoordinatorLayout>
30</layout>