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 <LinearLayout
6 android:layout_width="fill_parent"
7 android:layout_height="fill_parent"
8 android:fitsSystemWindows="true"
9 android:orientation="vertical">
10
11 <com.google.android.material.appbar.AppBarLayout
12 android:layout_width="match_parent"
13 android:layout_height="wrap_content">
14
15 <com.google.android.material.appbar.MaterialToolbar
16 android:id="@+id/toolbar"
17 android:layout_width="match_parent"
18 android:layout_height="wrap_content"
19 android:minHeight="?attr/actionBarSize" />
20
21 </com.google.android.material.appbar.AppBarLayout>
22
23 <androidx.coordinatorlayout.widget.CoordinatorLayout
24 android:id="@+id/coordinator"
25 android:layout_width="match_parent"
26 android:layout_height="match_parent">
27
28 <androidx.recyclerview.widget.RecyclerView
29 android:id="@+id/list"
30 android:layout_width="match_parent"
31 android:layout_height="match_parent"
32 android:orientation="vertical"
33 android:scrollbars="vertical"
34 app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
35 </androidx.coordinatorlayout.widget.CoordinatorLayout>
36
37 </LinearLayout>
38</layout>