blob: 46f09764ef7b264eca7fd51cb16e921a6b27b4fb [file] [log] [blame]
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Marcus Hagerottbea2b852016-08-11 14:55:52 -070017<android.support.design.widget.CoordinatorLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:id="@+id/root"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -070020 android:layout_width="match_parent"
Marcus Hagerottbea2b852016-08-11 14:55:52 -070021 android:layout_height="match_parent" >
Katherine Kuanb5760b92011-06-01 16:19:40 -070022
Marcus Hagerottbea2b852016-08-11 14:55:52 -070023 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
24 android:id="@+id/list_container"
25 android:layout_width="match_parent"
26 android:layout_height="match_parent">
Wenyi Wangc516dd32016-04-07 16:25:51 -070027
Wenyi Wangca6018d2016-08-18 17:23:13 -070028 <FrameLayout
29 android:id="@+id/contacts_view"
Marcus Hagerottbea2b852016-08-11 14:55:52 -070030 android:layout_width="match_parent"
Wenyi Wangca6018d2016-08-18 17:23:13 -070031 android:layout_height="match_parent"
32 android:layout_below="@id/toolbar_parent">
33 <FrameLayout
34 android:id="@+id/contacts_list_container"
35 android:layout_height="match_parent"
36 android:layout_width="match_parent" />
37 </FrameLayout>
Marcus Hagerottbea2b852016-08-11 14:55:52 -070038
39 <FrameLayout
40 android:id="@+id/contacts_unavailable_view"
41 android:layout_width="match_parent"
42 android:layout_height="match_parent"
43 android:layout_below="@id/toolbar_parent"
44 android:visibility="gone">
45 <FrameLayout
46 android:id="@+id/contacts_unavailable_container"
47 android:layout_height="match_parent"
48 android:layout_width="match_parent" />
49 </FrameLayout>
50
51 </RelativeLayout>
Wenyi Wangbb229242016-05-25 16:04:13 -070052
53 <include layout="@layout/floating_action_button" />
Marcus Hagerottbea2b852016-08-11 14:55:52 -070054</android.support.design.widget.CoordinatorLayout>