activity_muc_users.xml

 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
 6    <LinearLayout
 7        android:layout_width="fill_parent"
 8        android:layout_height="fill_parent"
 9        android:background="?attr/color_background_primary"
10        android:orientation="vertical">
11
12        <include
13            android:id="@+id/toolbar"
14            layout="@layout/toolbar" />
15
16
17        <androidx.coordinatorlayout.widget.CoordinatorLayout
18            android:id="@+id/coordinator"
19            android:layout_width="match_parent"
20            android:layout_height="match_parent"
21            android:background="?attr/color_background_primary">
22
23            <androidx.recyclerview.widget.RecyclerView
24                android:id="@+id/list"
25                android:layout_width="match_parent"
26                android:layout_height="match_parent"
27                android:background="?attr/color_background_primary"
28                android:orientation="vertical"
29                android:scrollbars="vertical"
30                app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
31        </androidx.coordinatorlayout.widget.CoordinatorLayout>
32
33    </LinearLayout>
34</layout>