blob: bcf218b44be82e8ebeef696bd1a7a929394bbee0 [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
17<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:id="@+id/list_container"
19 android:layout_width="match_parent"
20 android:layout_height="match_parent">
Katherine Kuanb5760b92011-06-01 16:19:40 -070021
22 <!-- Favorites -->
23 <fragment
24 android:id="@+id/favorites_fragment"
25 class="com.android.contacts.list.StrequentContactListFragment"
26 android:layout_height="match_parent"
27 android:layout_width="match_parent" />
28
29 <!-- Contacts -->
30 <fragment
31 android:id="@+id/contacts_fragment"
32 class="com.android.contacts.list.DefaultContactBrowseListFragment"
33 android:layout_height="match_parent"
Daniel Lehmann0cc25792011-03-02 21:38:03 -080034 android:layout_width="match_parent"
Katherine Kuanb5760b92011-06-01 16:19:40 -070035 />
36
37 <!-- Groups -->
38 <fragment
39 android:id="@+id/groups_fragment"
40 class="com.android.contacts.group.GroupBrowseListFragment"
41 android:layout_height="match_parent"
42 android:layout_width="match_parent"
43 />
44
Daniel Lehmann0cc25792011-03-02 21:38:03 -080045 <FrameLayout
46 android:id="@+id/contacts_unavailable_view"
47 android:layout_width="match_parent"
48 android:layout_height="match_parent"
49 android:visibility="gone">
50 <FrameLayout
51 android:id="@+id/contacts_unavailable_container"
52 android:layout_height="match_parent"
53 android:layout_width="match_parent" />
54 </FrameLayout>
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -070055</FrameLayout>