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
 9        <com.google.android.material.appbar.AppBarLayout
10            android:id="@+id/app_bar_layout"
11            android:layout_width="match_parent"
12            android:layout_height="wrap_content"
13            app:liftOnScroll="false">
14
15            <com.google.android.material.appbar.MaterialToolbar
16                android:id="@+id/material_toolbar"
17                android:layout_width="match_parent"
18                android:layout_height="?attr/actionBarSize"
19                app:navigationIcon="@drawable/ic_arrow_back_24dp" />
20        </com.google.android.material.appbar.AppBarLayout>
21
22        <androidx.fragment.app.FragmentContainerView
23            android:id="@+id/fragment_container"
24            android:layout_width="match_parent"
25            android:layout_height="match_parent"
26            android:fillViewport="true"
27            app:layout_behavior="@string/appbar_scrolling_view_behavior" />
28    </androidx.coordinatorlayout.widget.CoordinatorLayout>
29</layout>