1<layout xmlns:android="http://schemas.android.com/apk/res/android">
2
3 <android.support.design.widget.CoordinatorLayout
4 android:background="?attr/color_background_primary"
5 android:layout_width="match_parent"
6 android:layout_height="match_parent">
7
8
9 <android.support.v7.widget.RecyclerView
10 android:id="@+id/list"
11 android:scrollbars="vertical"
12 android:layout_width="match_parent"
13 android:layout_height="match_parent"
14 android:background="?attr/color_background_primary"
15 />
16
17 <android.support.design.widget.FloatingActionButton
18 android:id="@+id/fab"
19 android:layout_width="wrap_content"
20 android:layout_height="wrap_content"
21 android:layout_gravity="end|bottom"
22 android:layout_margin="16dp"
23 android:src="@drawable/ic_chat_white_24dp"/>
24 </android.support.design.widget.CoordinatorLayout>
25</layout>