1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android">
3
4 <FrameLayout
5 android:layout_width="match_parent"
6 android:layout_height="match_parent"
7 android:background="?attr/color_background_primary">
8
9 <ListView
10 android:id="@+id/choose_contact_list"
11 android:layout_width="match_parent"
12 android:layout_height="match_parent"
13 android:divider="@android:color/transparent"
14 android:dividerHeight="0dp"/>
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="@drawable/ic_person_add_white_24dp"/>
23 </FrameLayout>
24</layout>