blob: 445a332f0b28bcc6b7ae52d9eeabf841477a1ca7 [file] [log] [blame]
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 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
Daniel Lehmannc1506272011-05-13 13:21:15 -070017<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guy6304c0b2010-01-08 15:06:49 -080018 android:layout_width="match_parent"
19 android:layout_height="match_parent">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080020
Daniel Lehmannc1506272011-05-13 13:21:15 -070021 <!-- Dialer --> -->
22 <fragment
23 class="com.android.contacts.dialpad.DialpadFragment"
24 android:id="@+id/dialpad_fragment"
Romain Guy6304c0b2010-01-08 15:06:49 -080025 android:layout_width="match_parent"
Daniel Lehmannc1506272011-05-13 13:21:15 -070026 android:layout_height="match_parent" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080027
Daniel Lehmannc1506272011-05-13 13:21:15 -070028 <!-- Call Log -->
29 <fragment
30 class="com.android.contacts.calllog.CallLogFragment"
31 android:id="@+id/call_log_fragment"
32 android:layout_width="match_parent"
33 android:layout_height="match_parent" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080034
Daniel Lehmannc1506272011-05-13 13:21:15 -070035 <!-- Favorites -->
36 <fragment
37 android:id="@+id/favorites_fragment"
Daniel Lehmannaae838c2011-05-24 12:16:42 -070038 class="com.android.contacts.list.StrequentContactListFragment"
Daniel Lehmannc1506272011-05-13 13:21:15 -070039 android:layout_height="match_parent"
40 android:layout_width="match_parent" />
Daisuke Miyakawab2e626a2011-06-21 13:39:26 -070041
42 <!-- For phone search UI -->
43 <fragment
44 android:id="@+id/phone_number_picker_fragment"
45 class="com.android.contacts.list.PhoneNumberPickerFragment"
46 android:layout_height="match_parent"
47 android:layout_width="match_parent" />
48
49</FrameLayout>