1<layout xmlns:android="http://schemas.android.com/apk/res/android">
2
3 <FrameLayout
4 android:layout_width="match_parent"
5 android:layout_height="match_parent">
6
7
8 <de.timroes.android.listview.EnhancedListView
9 android:id="@+id/list"
10 android:layout_width="fill_parent"
11 android:layout_height="wrap_content"
12 android:background="?attr/color_background_primary"
13 android:divider="@color/black12"
14 android:dividerHeight="1dp"/>
15
16 <android.support.design.widget.FloatingActionButton
17 android:id="@+id/fab"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
20 android:layout_gravity="end|bottom"
21 android:layout_margin="16dp"
22 android:src="?attr/icon_new"/>
23 </FrameLayout>
24</layout>