1<layout xmlns:android="http://schemas.android.com/apk/res/android">
2
3 <FrameLayout
4 android:background="?attr/color_background_primary"
5 android:layout_width="match_parent"
6 android:layout_height="match_parent">
7
8
9 <de.timroes.android.listview.EnhancedListView
10 android:id="@+id/list"
11 android:layout_width="fill_parent"
12 android:layout_height="wrap_content"
13 android:background="?attr/color_background_primary"
14 android:divider="@android:color/transparent"
15 android:dividerHeight="0dp"/>
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 </FrameLayout>
25</layout>