1<layout xmlns:android="http://schemas.android.com/apk/res/android"
2 xmlns:app="http://schemas.android.com/apk/res-auto">
3
4 <androidx.coordinatorlayout.widget.CoordinatorLayout
5 android:layout_width="match_parent"
6 android:layout_height="match_parent">
7
8
9 <com.cheogram.android.ContextMenuRecyclerView
10 android:id="@+id/list"
11 android:layout_width="match_parent"
12 android:layout_height="match_parent"
13 android:scrollbars="vertical" />
14
15 <com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
16 android:id="@+id/fab"
17 android:layout_width="wrap_content"
18 android:layout_height="wrap_content"
19 android:layout_gravity="end|bottom"
20 android:layout_margin="16dp"
21 android:text="@string/start_chat"
22 app:icon="@drawable/ic_chat_24dp" />
23 </androidx.coordinatorlayout.widget.CoordinatorLayout>
24</layout>