1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools">
4
5 <LinearLayout
6 android:layout_width="match_parent"
7 android:layout_height="match_parent"
8 android:fitsSystemWindows="true"
9 android:orientation="vertical">
10
11 <com.google.android.material.appbar.AppBarLayout
12 android:id="@+id/app_bar_layout"
13 android:layout_width="match_parent"
14 android:layout_height="wrap_content">
15
16 <com.google.android.material.appbar.MaterialToolbar
17 android:id="@+id/toolbar"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:minHeight="?attr/actionBarSize" />
21
22 </com.google.android.material.appbar.AppBarLayout>
23
24
25 <androidx.recyclerview.widget.RecyclerView
26 android:id="@+id/choose_conversation_list"
27 android:layout_width="match_parent"
28 android:layout_height="match_parent"
29 android:divider="@android:color/transparent"
30 android:dividerHeight="0dp"
31 tools:listitem="@layout/item_conversation" />
32
33 </LinearLayout>
34</layout>