The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 1 | <?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 Lehmann | c150627 | 2011-05-13 13:21:15 -0700 | [diff] [blame] | 17 | <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
Romain Guy | 6304c0b | 2010-01-08 15:06:49 -0800 | [diff] [blame] | 18 | android:layout_width="match_parent" |
| 19 | android:layout_height="match_parent"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 20 | |
Daniel Lehmann | c150627 | 2011-05-13 13:21:15 -0700 | [diff] [blame] | 21 | <!-- Dialer --> --> |
| 22 | <fragment |
| 23 | class="com.android.contacts.dialpad.DialpadFragment" |
| 24 | android:id="@+id/dialpad_fragment" |
Romain Guy | 6304c0b | 2010-01-08 15:06:49 -0800 | [diff] [blame] | 25 | android:layout_width="match_parent" |
Daniel Lehmann | c150627 | 2011-05-13 13:21:15 -0700 | [diff] [blame] | 26 | android:layout_height="match_parent" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 27 | |
Daniel Lehmann | c150627 | 2011-05-13 13:21:15 -0700 | [diff] [blame] | 28 | <!-- 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 Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 34 | |
Daniel Lehmann | c150627 | 2011-05-13 13:21:15 -0700 | [diff] [blame] | 35 | <!-- Contacts --> |
| 36 | <fragment |
| 37 | android:id="@+id/contacts_fragment" |
| 38 | class="com.android.contacts.list.DefaultContactBrowseListFragment" |
| 39 | android:layout_height="match_parent" |
| 40 | android:layout_width="match_parent" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 41 | |
Daniel Lehmann | c150627 | 2011-05-13 13:21:15 -0700 | [diff] [blame] | 42 | <!-- Favorites --> |
| 43 | <fragment |
| 44 | android:id="@+id/favorites_fragment" |
Daniel Lehmann | aae838c | 2011-05-24 12:16:42 -0700 | [diff] [blame^] | 45 | class="com.android.contacts.list.StrequentContactListFragment" |
Daniel Lehmann | c150627 | 2011-05-13 13:21:15 -0700 | [diff] [blame] | 46 | android:layout_height="match_parent" |
| 47 | android:layout_width="match_parent" /> |
| 48 | </FrameLayout> |