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 |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 7 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 9 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 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 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 18 | package="com.android.contacts" |
| 19 | android:sharedUserId="android.uid.shared" |
Dianne Hackborn | 15a5ad8 | 2010-06-22 16:09:43 -0700 | [diff] [blame] | 20 | android:sharedUserLabel="@string/sharedUserLabel" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 21 | > |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 22 | |
Jeff Hamilton | e788353 | 2010-02-11 16:25:48 -0600 | [diff] [blame] | 23 | <original-package android:name="com.android.contacts" /> |
| 24 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.CALL_PRIVILEGED" /> |
| 26 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 27 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 28 | <uses-permission android:name="android.permission.INTERNET" /> |
| 29 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
| 30 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
| 31 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" /> |
Daisuke Miyakawa | 2991dd9 | 2009-05-19 08:32:17 +0900 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Dmitri Plotnikov | daa2d5c | 2010-01-29 17:44:20 -0800 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
Fred Quintana | 104b792 | 2009-07-22 20:01:15 -0700 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
Nicolas Catania | 9bcf470 | 2009-11-06 13:19:43 -0800 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.VIBRATE" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 37 | |
| 38 | <application |
| 39 | android:label="@string/contactsList" |
| 40 | android:icon="@drawable/ic_launcher_contacts" |
| 41 | android:process="android.process.acore" |
| 42 | android:taskAffinity="android.task.contacts" |
| 43 | > |
| 44 | |
| 45 | <!-- A virtual 12 key dialer --> |
| 46 | <activity android:name="TwelveKeyDialer" |
| 47 | android:launchMode="singleTop" |
| 48 | > |
| 49 | <intent-filter> |
| 50 | <action android:name="com.android.phone.action.TOUCH_DIALER" /> |
| 51 | <category android:name="android.intent.category.DEFAULT" /> |
| 52 | <category android:name="android.intent.category.TAB" /> |
| 53 | </intent-filter> |
| 54 | </activity> |
| 55 | |
| 56 | <!-- A list of recent calls --> |
| 57 | <activity android:name="RecentCallsListActivity" |
| 58 | android:label="@string/recentCallsIconLabel" |
| 59 | > |
| 60 | <intent-filter> |
| 61 | <action android:name="com.android.phone.action.RECENT_CALLS" /> |
| 62 | <category android:name="android.intent.category.DEFAULT" /> |
| 63 | <category android:name="android.intent.category.TAB" /> |
| 64 | </intent-filter> |
| 65 | </activity> |
| 66 | |
Daniel Lehmann | 7675e12 | 2010-04-21 17:31:11 -0700 | [diff] [blame] | 67 | <!-- Tab container for all tabs --> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 68 | <activity android:name="DialtactsActivity" |
| 69 | android:label="@string/launcherDialer" |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 70 | android:theme="@style/DialtactsTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 71 | android:launchMode="singleTask" |
| 72 | android:clearTaskOnLaunch="true" |
| 73 | android:icon="@drawable/ic_launcher_phone" |
| 74 | android:screenOrientation="nosensor" |
| 75 | > |
| 76 | <intent-filter> |
| 77 | <action android:name="android.intent.action.DIAL" /> |
| 78 | <category android:name="android.intent.category.DEFAULT" /> |
| 79 | <category android:name="android.intent.category.BROWSABLE" /> |
| 80 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 81 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 82 | </intent-filter> |
| 83 | <intent-filter> |
| 84 | <action android:name="android.intent.action.DIAL" /> |
| 85 | <category android:name="android.intent.category.DEFAULT" /> |
| 86 | <category android:name="android.intent.category.BROWSABLE" /> |
| 87 | <data android:scheme="voicemail" /> |
| 88 | </intent-filter> |
| 89 | <intent-filter> |
| 90 | <action android:name="android.intent.action.DIAL" /> |
| 91 | <category android:name="android.intent.category.DEFAULT" /> |
| 92 | </intent-filter> |
| 93 | <intent-filter> |
| 94 | <action android:name="android.intent.action.MAIN" /> |
| 95 | <category android:name="android.intent.category.DEFAULT" /> |
| 96 | <category android:name="android.intent.category.LAUNCHER" /> |
| 97 | <category android:name="android.intent.category.BROWSABLE" /> |
| 98 | </intent-filter> |
| 99 | <intent-filter> |
| 100 | <action android:name="android.intent.action.VIEW" /> |
| 101 | <action android:name="android.intent.action.DIAL" /> |
| 102 | <category android:name="android.intent.category.DEFAULT" /> |
| 103 | <category android:name="android.intent.category.BROWSABLE" /> |
| 104 | <data android:scheme="tel" /> |
| 105 | </intent-filter> |
| 106 | <intent-filter> |
| 107 | <action android:name="android.intent.action.VIEW" /> |
| 108 | <category android:name="android.intent.category.DEFAULT" /> |
| 109 | <category android:name="android.intent.category.BROWSABLE" /> |
| 110 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 111 | </intent-filter> |
| 112 | <intent-filter> |
| 113 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 114 | <category android:name="android.intent.category.DEFAULT" /> |
| 115 | <category android:name="android.intent.category.BROWSABLE" /> |
| 116 | </intent-filter> |
| 117 | </activity> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 118 | |
Daniel Lehmann | 7675e12 | 2010-04-21 17:31:11 -0700 | [diff] [blame] | 119 | <!-- Tab container for all tabs --> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 120 | <activity-alias android:name="DialtactsContactsEntryActivity" |
| 121 | android:targetActivity="DialtactsActivity" |
| 122 | android:label="@string/contactsList" |
| 123 | android:icon="@drawable/ic_launcher_contacts" |
| 124 | > |
| 125 | <intent-filter> |
| 126 | <action android:name="android.intent.action.MAIN" /> |
| 127 | <category android:name="android.intent.category.DEFAULT" /> |
| 128 | <category android:name="android.intent.category.LAUNCHER" /> |
Dmitri Plotnikov | 032bb36 | 2009-05-06 17:05:39 -0700 | [diff] [blame] | 129 | <category android:name="android.intent.category.BROWSABLE" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 130 | </intent-filter> |
| 131 | |
| 132 | <intent-filter> |
| 133 | <action android:name="android.intent.action.VIEW" /> |
| 134 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 2428f62 | 2009-09-13 01:08:43 -0700 | [diff] [blame] | 135 | <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" /> |
| 136 | <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 137 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 138 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 139 | </activity-alias> |
| 140 | |
Daniel Lehmann | 7675e12 | 2010-04-21 17:31:11 -0700 | [diff] [blame] | 141 | <!-- Main launch Intent to open the Contacts app. This will open the app in its last manual |
| 142 | state. This is the state that has been explicitly set by the user (e.g. by clicking a tab). |
| 143 | States configured via other Intents (e.g. CallLog after Call) are not considered manual |
| 144 | state. At the moment, the Intent always goes to the DialtactsActivity, but this might later |
| 145 | be changed to also include sub-activities like Edit or View if they were left open --> |
| 146 | |
| 147 | <activity-alias android:name="ContactsLaunchActivity" |
| 148 | android:targetActivity="DialtactsActivity" |
| 149 | > |
| 150 | <intent-filter> |
| 151 | <action android:name="android.intent.action.MAIN" /> |
| 152 | <category android:name="android.intent.category.DEFAULT" /> |
| 153 | <category android:name="android.intent.category.BROWSABLE" /> |
| 154 | </intent-filter> |
| 155 | </activity-alias> |
| 156 | |
The Android Open Source Project | 1f62096 | 2009-03-09 11:52:14 -0700 | [diff] [blame] | 157 | <!-- An empty activity that presents the DialtactActivity's Favorites tab --> |
| 158 | <activity-alias android:name="DialtactsFavoritesEntryActivity" |
| 159 | android:targetActivity="DialtactsActivity" |
The Android Open Source Project | 1f62096 | 2009-03-09 11:52:14 -0700 | [diff] [blame] | 160 | > |
| 161 | <intent-filter> |
| 162 | <action android:name="android.intent.action.MAIN" /> |
| 163 | <category android:name="android.intent.category.DEFAULT" /> |
| 164 | </intent-filter> |
| 165 | </activity-alias> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 166 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 167 | <!-- The actual list of contacts, usually embedded in ContactsActivity --> |
| 168 | <activity android:name="ContactsListActivity" |
| 169 | android:label="@string/contactsList" |
| 170 | android:clearTaskOnLaunch="true" |
| 171 | > |
| 172 | <intent-filter> |
| 173 | <action android:name="com.android.contacts.action.LIST_DEFAULT" /> |
| 174 | <category android:name="android.intent.category.DEFAULT" /> |
| 175 | <category android:name="android.intent.category.TAB" /> |
| 176 | </intent-filter> |
| 177 | |
| 178 | <intent-filter> |
| 179 | <action android:name="com.android.contacts.action.LIST_CONTACTS" /> |
| 180 | <category android:name="android.intent.category.DEFAULT" /> |
| 181 | <category android:name="android.intent.category.TAB" /> |
| 182 | </intent-filter> |
| 183 | |
| 184 | <intent-filter> |
| 185 | <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" /> |
| 186 | <category android:name="android.intent.category.DEFAULT" /> |
| 187 | <category android:name="android.intent.category.TAB" /> |
| 188 | </intent-filter> |
| 189 | |
| 190 | <intent-filter> |
| 191 | <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" /> |
| 192 | <category android:name="android.intent.category.DEFAULT" /> |
| 193 | <category android:name="android.intent.category.TAB" /> |
| 194 | </intent-filter> |
| 195 | |
| 196 | <intent-filter android:label="@string/starredList"> |
| 197 | <action android:name="com.android.contacts.action.LIST_STARRED" /> |
| 198 | <category android:name="android.intent.category.DEFAULT" /> |
| 199 | <category android:name="android.intent.category.TAB" /> |
| 200 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 201 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 202 | <intent-filter android:label="@string/frequentList"> |
| 203 | <action android:name="com.android.contacts.action.LIST_FREQUENT" /> |
| 204 | <category android:name="android.intent.category.DEFAULT" /> |
| 205 | <category android:name="android.intent.category.TAB" /> |
| 206 | </intent-filter> |
| 207 | |
| 208 | <intent-filter android:label="@string/strequentList"> |
| 209 | <action android:name="com.android.contacts.action.LIST_STREQUENT" /> |
| 210 | <category android:name="android.intent.category.DEFAULT" /> |
| 211 | <category android:name="android.intent.category.TAB" /> |
| 212 | </intent-filter> |
| 213 | |
| 214 | <intent-filter> |
| 215 | <action android:name="android.intent.action.INSERT_OR_EDIT" /> |
| 216 | <category android:name="android.intent.category.DEFAULT" /> |
| 217 | <data android:mimeType="vnd.android.cursor.item/person" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 218 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 219 | <data android:mimeType="vnd.android.cursor.item/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 220 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 221 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 222 | <intent-filter> |
| 223 | <action android:name="android.intent.action.PICK" /> |
| 224 | <category android:name="android.intent.category.DEFAULT" /> |
Evan Millar | c2d862e | 2009-08-31 12:52:39 -0700 | [diff] [blame] | 225 | <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" /> |
| 226 | <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" /> |
| 227 | <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" /> |
| 228 | <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" /> |
| 229 | <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" /> |
| 230 | <data android:mimeType="vnd.android.cursor.dir/postal-address" android:host="contacts" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 231 | </intent-filter> |
| 232 | |
| 233 | <intent-filter> |
| 234 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 235 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | 631c1ff | 2009-09-03 16:57:30 -0700 | [diff] [blame] | 236 | <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
| 237 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
| 238 | <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" /> |
| 239 | <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" /> |
| 240 | <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" /> |
| 241 | <data android:mimeType="vnd.android.cursor.item/postal-address" android:host="contacts" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 242 | </intent-filter> |
The Android Open Source Project | 37a16ac | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 243 | </activity> |
| 244 | |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 245 | <!-- An activity for joining contacts --> |
Dmitri Plotnikov | 501b7ea | 2010-04-07 17:20:49 -0700 | [diff] [blame] | 246 | <activity android:name="JoinContactActivity" |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 247 | android:theme="@style/TallTitleBarTheme" |
| 248 | android:clearTaskOnLaunch="true" |
| 249 | > |
| 250 | <intent-filter> |
Dmitri Plotnikov | 501b7ea | 2010-04-07 17:20:49 -0700 | [diff] [blame] | 251 | <action android:name="com.android.contacts.action.JOIN_CONTACT" /> |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 252 | <category android:name="android.intent.category.DEFAULT" /> |
| 253 | </intent-filter> |
| 254 | </activity> |
| 255 | |
Dmitri Plotnikov | e8ae9ac | 2010-04-21 13:37:15 -0700 | [diff] [blame] | 256 | <!-- An activity for selecting multiple phone numbers --> |
| 257 | <activity android:name="MultiplePhonePickerActivity"> |
| 258 | <intent-filter> |
| 259 | <action android:name="com.android.contacts.action.GET_MULTIPLE_PHONES" /> |
| 260 | <category android:name="android.intent.category.DEFAULT" /> |
| 261 | <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" /> |
| 262 | </intent-filter> |
| 263 | </activity> |
| 264 | |
Dmitri Plotnikov | 8e86b75 | 2010-02-22 17:47:57 -0800 | [diff] [blame] | 265 | <!-- The contacts search/filter UI --> |
Dmitri Plotnikov | 3ef3b1d | 2010-04-20 15:45:56 -0700 | [diff] [blame] | 266 | <activity android:name="ContactsSearchActivity" |
Dmitri Plotnikov | 8e86b75 | 2010-02-22 17:47:57 -0800 | [diff] [blame] | 267 | android:theme="@style/ContactsSearchTheme" |
Dmitri Plotnikov | d5061fe | 2010-06-07 15:06:58 -0700 | [diff] [blame] | 268 | android:windowSoftInputMode="stateAlwaysVisible" |
Dmitri Plotnikov | 8e86b75 | 2010-02-22 17:47:57 -0800 | [diff] [blame] | 269 | > |
| 270 | <intent-filter> |
| 271 | <action android:name="com.android.contacts.action.FILTER_CONTACTS" /> |
| 272 | <category android:name="android.intent.category.DEFAULT" /> |
| 273 | <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" /> |
| 274 | </intent-filter> |
| 275 | </activity> |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 276 | |
Dmitri Plotnikov | 207d4f6 | 2010-03-23 16:38:29 -0700 | [diff] [blame] | 277 | <!-- The contacts search/filter UI --> |
| 278 | <activity android:name="SearchResultsActivity" |
| 279 | android:theme="@style/TallTitleBarTheme" |
| 280 | android:label="@string/contactsList" |
| 281 | > |
| 282 | <intent-filter> |
| 283 | <action android:name="android.intent.action.SEARCH" /> |
| 284 | <category android:name="android.intent.category.DEFAULT" /> |
| 285 | </intent-filter> |
| 286 | |
| 287 | <meta-data android:name="android.app.searchable" |
| 288 | android:resource="@xml/searchable" |
| 289 | /> |
| 290 | </activity> |
| 291 | |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 292 | <!-- Used to select display and sync groups --> |
Dmitri Plotnikov | 1ea45f2 | 2010-02-04 17:17:44 -0800 | [diff] [blame] | 293 | <activity android:name=".ui.ContactsPreferencesActivity" android:label="@string/displayGroups" /> |
Jeff Sharkey | d5c5b9a | 2009-06-21 19:46:04 -0700 | [diff] [blame] | 294 | |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 295 | <activity |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 296 | android:name=".ui.ShowOrCreateActivity" |
| 297 | android:theme="@style/FullyTranslucent"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 298 | |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 299 | <intent-filter> |
| 300 | <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" /> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 301 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 302 | <data android:scheme="mailto" /> |
| 303 | <data android:scheme="tel" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 304 | </intent-filter> |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 305 | </activity> |
| 306 | |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 307 | <!-- Used to show QuickContact window over a translucent activity, which is a |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 308 | temporary hack until we add better framework support. --> |
| 309 | <activity |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 310 | android:name=".ui.QuickContactActivity" |
Jeff Sharkey | 735e8b1 | 2009-09-30 14:57:07 -0700 | [diff] [blame] | 311 | android:theme="@style/FullyTranslucent.QuickContact" |
| 312 | android:launchMode="singleTop" |
Jeff Sharkey | 5cbf6f4 | 2009-10-02 14:22:51 -0700 | [diff] [blame] | 313 | android:excludeFromRecents="true" |
Dmitri Plotnikov | ad3bd44 | 2010-03-23 22:49:43 -0700 | [diff] [blame] | 314 | android:taskAffinity="android.task.quickcontact" |
| 315 | android:windowSoftInputMode="stateUnchanged" |
| 316 | > |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 317 | |
| 318 | <intent-filter> |
Evan Millar | 33b0845 | 2009-09-30 21:45:08 -0700 | [diff] [blame] | 319 | <action android:name="com.android.contacts.action.QUICK_CONTACT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 320 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 321 | <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
Bai Tao | d128adc | 2010-03-24 08:50:35 +0800 | [diff] [blame] | 322 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 323 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 324 | </activity> |
| 325 | |
| 326 | <activity-alias android:name="ContactShortcut" |
| 327 | android:targetActivity="ContactsListActivity" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 328 | android:label="@string/shortcutContact" |
| 329 | android:icon="@drawable/ic_launcher_shortcut_contact"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 330 | |
| 331 | <intent-filter> |
| 332 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 333 | <category android:name="android.intent.category.DEFAULT" /> |
| 334 | </intent-filter> |
| 335 | |
| 336 | </activity-alias> |
| 337 | |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 338 | <activity-alias android:name="alias.DialShortcut" |
| 339 | android:targetActivity="ContactsListActivity" |
| 340 | android:label="@string/shortcutDialContact" |
Mike Cleron | f143a45 | 2009-09-30 01:13:23 -0700 | [diff] [blame] | 341 | android:icon="@drawable/ic_launcher_shortcut_directdial"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 342 | |
| 343 | <intent-filter> |
| 344 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 345 | <category android:name="android.intent.category.DEFAULT" /> |
Bernd Holzhey | a497ce5 | 2010-03-31 10:06:24 +0200 | [diff] [blame] | 346 | <category android:name="android.intent.category.CAR_MODE" /> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 347 | </intent-filter> |
| 348 | |
| 349 | </activity-alias> |
| 350 | |
| 351 | <activity-alias android:name="alias.MessageShortcut" |
| 352 | android:targetActivity="ContactsListActivity" |
| 353 | android:label="@string/shortcutMessageContact" |
Mike Cleron | f143a45 | 2009-09-30 01:13:23 -0700 | [diff] [blame] | 354 | android:icon="@drawable/ic_launcher_shortcut_directmessage"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 355 | |
| 356 | <intent-filter> |
| 357 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 358 | <category android:name="android.intent.category.DEFAULT" /> |
| 359 | </intent-filter> |
| 360 | |
| 361 | </activity-alias> |
| 362 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 363 | <activity android:name="CallDetailActivity" |
| 364 | android:label="@string/callDetailTitle" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 365 | android:theme="@style/TallTitleBarTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 366 | > |
| 367 | <intent-filter> |
| 368 | <action android:name="android.intent.action.VIEW" /> |
| 369 | <category android:name="android.intent.category.DEFAULT" /> |
| 370 | <data android:mimeType="vnd.android.cursor.item/calls" /> |
| 371 | </intent-filter> |
| 372 | </activity> |
| 373 | |
| 374 | <!-- Views the details of a single contact --> |
Daniel Lehmann | 4cd9441 | 2010-04-08 16:44:36 -0700 | [diff] [blame] | 375 | <activity android:name=".activities.ContactDetailActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 376 | android:label="@string/viewContactTitle" |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 377 | android:theme="@style/TallTitleBarTheme"> |
| 378 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 379 | <intent-filter android:label="@string/viewContactDesription"> |
| 380 | <action android:name="android.intent.action.VIEW" /> |
| 381 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 382 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
| 383 | <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 384 | <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 385 | </intent-filter> |
| 386 | </activity> |
| 387 | |
Daniel Lehmann | 25a0282 | 2010-05-11 15:52:43 -0700 | [diff] [blame] | 388 | <!-- Shows the List and Details in two panes. This is probably temporary --> |
| 389 | <activity android:name=".activities.TwoPaneActivity" |
| 390 | android:label="Contacts Goop" |
| 391 | android:theme="@style/TallTitleBarTheme"> |
| 392 | |
| 393 | <intent-filter android:label="Contacts Goop"> |
| 394 | <action android:name="android.intent.action.MAIN" /> |
| 395 | <category android:name="android.intent.category.DEFAULT" /> |
| 396 | <category android:name="android.intent.category.LAUNCHER" /> |
| 397 | <category android:name="android.intent.category.BROWSABLE" /> |
| 398 | </intent-filter> |
| 399 | </activity> |
| 400 | |
Daniel Lehmann | f319cf8 | 2010-06-25 17:41:13 -0700 | [diff] [blame^] | 401 | <!-- Create a new or edit an existing contact --> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 402 | <activity |
Daniel Lehmann | cdef2b6 | 2010-06-06 18:25:49 -0700 | [diff] [blame] | 403 | android:name=".activities.ContactEditorActivity" |
Daniel Lehmann | 3a12077 | 2010-06-21 16:21:35 -0700 | [diff] [blame] | 404 | android:theme="@style/TallTitleBarTheme" |
| 405 | android:windowSoftInputMode="adjustResize"> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 406 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 407 | <intent-filter android:label="@string/editContactDescription"> |
| 408 | <action android:name="android.intent.action.EDIT" /> |
| 409 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 410 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 411 | <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
Evan Millar | 8a79cee | 2009-08-19 17:20:49 -0700 | [diff] [blame] | 412 | <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 413 | </intent-filter> |
| 414 | <intent-filter android:label="@string/insertContactDescription"> |
| 415 | <action android:name="android.intent.action.INSERT" /> |
| 416 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 417 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 418 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 419 | <data android:mimeType="vnd.android.cursor.dir/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 420 | </intent-filter> |
Daniel Lehmann | cdef2b6 | 2010-06-06 18:25:49 -0700 | [diff] [blame] | 421 | </activity> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 422 | |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 423 | <!-- Stub service used to keep our process alive long enough for |
| 424 | background threads to finish their operations. --> |
| 425 | <service |
| 426 | android:name=".util.EmptyService" |
| 427 | android:exported="false" /> |
| 428 | |
Daniel Lehmann | 173ffe1 | 2010-06-14 18:19:10 -0700 | [diff] [blame] | 429 | <!-- Service to save a contact --> |
| 430 | <service |
| 431 | android:name=".views.ContactSaveService" |
| 432 | android:exported="false" /> |
| 433 | |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 434 | <!-- Views the details of a single contact --> |
| 435 | <activity android:name="ContactOptionsActivity" |
| 436 | android:label="@string/contactOptionsTitle" |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 437 | > |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 438 | <intent-filter> |
| 439 | <action android:name="android.intent.action.EDIT" /> |
| 440 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 441 | </intent-filter> |
| 442 | </activity> |
| 443 | |
| 444 | <!-- Attaches a photo to a contact. Started from external applications --> |
| 445 | <activity android:name="AttachImage" |
| 446 | android:label="@string/attachToContact" |
| 447 | android:taskAffinity=""> |
| 448 | <intent-filter> |
| 449 | <action android:name="android.intent.action.ATTACH_DATA" /> |
| 450 | <data android:mimeType="image/*" /> |
| 451 | <category android:name="android.intent.category.DEFAULT" /> |
| 452 | </intent-filter> |
| 453 | /> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 454 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 455 | |
Dmitri Plotnikov | 884e393 | 2010-05-13 19:13:51 -0700 | [diff] [blame] | 456 | <!-- Interstitial activity that shows a phone disambig dialog --> |
| 457 | <activity android:name="CallContactActivity" |
| 458 | android:theme="@android:style/Theme.Translucent"> |
| 459 | </activity> |
| 460 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 461 | <!-- Makes .ContactsListActivity the search target for any activity in Contacts --> |
Jeff Sharkey | 6831cd9 | 2010-02-28 19:56:58 -0800 | [diff] [blame] | 462 | <meta-data |
| 463 | android:name="android.app.default_searchable" |
| 464 | android:value=".ContactsListActivity" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 465 | |
| 466 | |
| 467 | <!-- LIVE FOLDERS --> |
| 468 | <activity |
| 469 | android:name=".ContactsLiveFolders$AllContacts" |
| 470 | android:label="@string/liveFolderAll" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 471 | android:icon="@drawable/ic_launcher_folder_live_contacts"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 472 | <intent-filter> |
| 473 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 474 | <category android:name="android.intent.category.DEFAULT" /> |
| 475 | </intent-filter> |
| 476 | </activity> |
| 477 | |
| 478 | <activity |
| 479 | android:name=".ContactsLiveFolders$StarredContacts" |
| 480 | android:label="@string/liveFolderFavorites" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 481 | android:icon="@drawable/ic_launcher_folder_live_contacts_starred"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 482 | <intent-filter> |
| 483 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 484 | <category android:name="android.intent.category.DEFAULT" /> |
| 485 | </intent-filter> |
| 486 | </activity> |
| 487 | |
| 488 | <activity |
| 489 | android:name=".ContactsLiveFolders$PhoneContacts" |
| 490 | android:label="@string/liveFolderPhone" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 491 | android:icon="@drawable/ic_launcher_folder_live_contacts_phone"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 492 | <intent-filter> |
| 493 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 494 | <category android:name="android.intent.category.DEFAULT" /> |
| 495 | </intent-filter> |
| 496 | </activity> |
| 497 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 498 | <!-- vCard related --> |
| 499 | <activity android:name=".vcard.ImportVCardActivity" |
Daisuke Miyakawa | 6448da7 | 2010-04-02 12:06:44 +0900 | [diff] [blame] | 500 | android:theme="@style/BackgroundOnly"> |
| 501 | <intent-filter> |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 502 | <action android:name="android.intent.action.VIEW" /> |
Attila Bodis | 1261e13 | 2010-03-18 22:06:37 -0700 | [diff] [blame] | 503 | <data android:mimeType="text/directory" /> |
Daisuke Miyakawa | 92ba98a | 2010-06-22 09:12:19 +0900 | [diff] [blame] | 504 | <data android:mimeType="text/vcard" /> |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 505 | <data android:mimeType="text/x-vcard" /> |
| 506 | <category android:name="android.intent.category.DEFAULT" /> |
| 507 | </intent-filter> |
| 508 | </activity> |
| 509 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 510 | <activity android:name=".vcard.SelectAccountActivity" |
Daisuke Miyakawa | 6d2f27f | 2010-04-21 16:11:38 +0900 | [diff] [blame] | 511 | android:theme="@style/BackgroundOnly" /> |
| 512 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 513 | <activity android:name=".vcard.ExportVCardActivity" |
Daisuke Miyakawa | 0bec3b9 | 2009-09-25 13:33:27 -0700 | [diff] [blame] | 514 | android:theme="@style/BackgroundOnly" /> |
Dmitri Plotnikov | e124722 | 2010-06-02 18:14:21 -0700 | [diff] [blame] | 515 | |
Daisuke Miyakawa | d8fb81a | 2010-06-08 17:44:22 -0700 | [diff] [blame] | 516 | <service |
| 517 | android:name=".vcard.VCardService" |
| 518 | android:exported="false" /> |
| 519 | |
Dmitri Plotnikov | e124722 | 2010-06-02 18:14:21 -0700 | [diff] [blame] | 520 | <!-- Pinned header list demo --> |
| 521 | <activity android:name=".widget.PinnedHeaderListDemoActivity"> |
| 522 | <intent-filter> |
| 523 | <action android:name="android.intent.action.MAIN" /> |
| 524 | <category android:name="android.intent.category.DEFAULT" /> |
| 525 | </intent-filter> |
| 526 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 527 | </application> |
| 528 | </manifest> |