<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout 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"
|
android:background="@color/page_background"
|
android:orientation="vertical">
|
|
<com.google.android.material.appbar.MaterialToolbar
|
android:id="@+id/main_toolbar"
|
android:layout_width="match_parent"
|
android:layout_height="?attr/actionBarSize"
|
android:background="?attr/colorPrimary"
|
app:title="@string/main_title"
|
app:titleTextColor="@android:color/white" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/menu_recycler_view"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"
|
android:clipToPadding="false"
|
android:padding="16dp" />
|
|
</LinearLayout>
|