1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android">
3
4 <LinearLayout
5 android:layout_width="match_parent"
6 android:layout_height="match_parent"
7 android:orientation="vertical">
8
9 <include android:id="@+id/toolbar"
10 layout="@layout/toolbar" />
11
12 <FrameLayout
13 android:layout_width="match_parent"
14 android:layout_height="match_parent"
15 android:background="?attr/color_background_primary">
16
17 <ListView
18 android:id="@+id/choose_contact_list"
19 android:layout_width="match_parent"
20 android:layout_height="match_parent"
21 android:divider="@android:color/transparent"
22 android:dividerHeight="0dp"/>
23
24 <android.support.design.widget.FloatingActionButton
25 android:id="@+id/fab"
26 android:layout_width="wrap_content"
27 android:layout_height="wrap_content"
28 android:layout_gravity="end|bottom"
29 android:layout_margin="16dp"
30 android:src="@drawable/ic_person_add_white_24dp"/>
31 </FrameLayout>
32 </LinearLayout>
33</layout>