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" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 20 | > |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 21 | |
Jeff Hamilton | e788353 | 2010-02-11 16:25:48 -0600 | [diff] [blame^] | 22 | <original-package android:name="com.android.contacts" /> |
| 23 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.CALL_PRIVILEGED" /> |
| 25 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 26 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 27 | <uses-permission android:name="android.permission.INTERNET" /> |
| 28 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
| 29 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
| 30 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" /> |
Daisuke Miyakawa | 2991dd9 | 2009-05-19 08:32:17 +0900 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Dmitri Plotnikov | daa2d5c | 2010-01-29 17:44:20 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
Fred Quintana | 104b792 | 2009-07-22 20:01:15 -0700 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
Nicolas Catania | 9bcf470 | 2009-11-06 13:19:43 -0800 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.VIBRATE" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 36 | |
| 37 | <application |
| 38 | android:label="@string/contactsList" |
| 39 | android:icon="@drawable/ic_launcher_contacts" |
| 40 | android:process="android.process.acore" |
| 41 | android:taskAffinity="android.task.contacts" |
| 42 | > |
| 43 | |
| 44 | <!-- A virtual 12 key dialer --> |
| 45 | <activity android:name="TwelveKeyDialer" |
| 46 | android:launchMode="singleTop" |
| 47 | > |
| 48 | <intent-filter> |
| 49 | <action android:name="com.android.phone.action.TOUCH_DIALER" /> |
| 50 | <category android:name="android.intent.category.DEFAULT" /> |
| 51 | <category android:name="android.intent.category.TAB" /> |
| 52 | </intent-filter> |
| 53 | </activity> |
| 54 | |
| 55 | <!-- A list of recent calls --> |
| 56 | <activity android:name="RecentCallsListActivity" |
| 57 | android:label="@string/recentCallsIconLabel" |
| 58 | > |
| 59 | <intent-filter> |
| 60 | <action android:name="com.android.phone.action.RECENT_CALLS" /> |
| 61 | <category android:name="android.intent.category.DEFAULT" /> |
| 62 | <category android:name="android.intent.category.TAB" /> |
| 63 | </intent-filter> |
| 64 | </activity> |
| 65 | |
| 66 | <!-- Tab container for TwelveKeyDialer and RecentCallsList --> |
| 67 | <activity android:name="DialtactsActivity" |
| 68 | android:label="@string/launcherDialer" |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 69 | android:theme="@style/DialtactsTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 70 | android:launchMode="singleTask" |
| 71 | android:clearTaskOnLaunch="true" |
| 72 | android:icon="@drawable/ic_launcher_phone" |
| 73 | android:screenOrientation="nosensor" |
| 74 | > |
| 75 | <intent-filter> |
| 76 | <action android:name="android.intent.action.DIAL" /> |
| 77 | <category android:name="android.intent.category.DEFAULT" /> |
| 78 | <category android:name="android.intent.category.BROWSABLE" /> |
| 79 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 80 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 81 | </intent-filter> |
| 82 | <intent-filter> |
| 83 | <action android:name="android.intent.action.DIAL" /> |
| 84 | <category android:name="android.intent.category.DEFAULT" /> |
| 85 | <category android:name="android.intent.category.BROWSABLE" /> |
| 86 | <data android:scheme="voicemail" /> |
| 87 | </intent-filter> |
| 88 | <intent-filter> |
| 89 | <action android:name="android.intent.action.DIAL" /> |
| 90 | <category android:name="android.intent.category.DEFAULT" /> |
| 91 | </intent-filter> |
| 92 | <intent-filter> |
| 93 | <action android:name="android.intent.action.MAIN" /> |
| 94 | <category android:name="android.intent.category.DEFAULT" /> |
| 95 | <category android:name="android.intent.category.LAUNCHER" /> |
| 96 | <category android:name="android.intent.category.BROWSABLE" /> |
| 97 | </intent-filter> |
| 98 | <intent-filter> |
| 99 | <action android:name="android.intent.action.VIEW" /> |
| 100 | <action android:name="android.intent.action.DIAL" /> |
| 101 | <category android:name="android.intent.category.DEFAULT" /> |
| 102 | <category android:name="android.intent.category.BROWSABLE" /> |
| 103 | <data android:scheme="tel" /> |
| 104 | </intent-filter> |
| 105 | <intent-filter> |
| 106 | <action android:name="android.intent.action.VIEW" /> |
| 107 | <category android:name="android.intent.category.DEFAULT" /> |
| 108 | <category android:name="android.intent.category.BROWSABLE" /> |
| 109 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 110 | </intent-filter> |
| 111 | <intent-filter> |
| 112 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 113 | <category android:name="android.intent.category.DEFAULT" /> |
| 114 | <category android:name="android.intent.category.BROWSABLE" /> |
| 115 | </intent-filter> |
| 116 | </activity> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 117 | |
Dmitri Plotnikov | 032bb36 | 2009-05-06 17:05:39 -0700 | [diff] [blame] | 118 | <!-- Tab container for Activity Stream and Contacts --> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 119 | <activity-alias android:name="DialtactsContactsEntryActivity" |
| 120 | android:targetActivity="DialtactsActivity" |
| 121 | android:label="@string/contactsList" |
| 122 | android:icon="@drawable/ic_launcher_contacts" |
| 123 | > |
| 124 | <intent-filter> |
| 125 | <action android:name="android.intent.action.MAIN" /> |
| 126 | <category android:name="android.intent.category.DEFAULT" /> |
| 127 | <category android:name="android.intent.category.LAUNCHER" /> |
Dmitri Plotnikov | 032bb36 | 2009-05-06 17:05:39 -0700 | [diff] [blame] | 128 | <category android:name="android.intent.category.BROWSABLE" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 129 | </intent-filter> |
| 130 | |
| 131 | <intent-filter> |
| 132 | <action android:name="android.intent.action.VIEW" /> |
| 133 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 2428f62 | 2009-09-13 01:08:43 -0700 | [diff] [blame] | 134 | <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" /> |
| 135 | <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] | 136 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 137 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 138 | <intent-filter> |
| 139 | <action android:name="com.android.contacts.action.FILTER_CONTACTS" /> |
| 140 | <category android:name="android.intent.category.DEFAULT" /> |
| 141 | </intent-filter> |
| 142 | </activity-alias> |
| 143 | |
The Android Open Source Project | 1f62096 | 2009-03-09 11:52:14 -0700 | [diff] [blame] | 144 | <!-- An empty activity that presents the DialtactActivity's Favorites tab --> |
| 145 | <activity-alias android:name="DialtactsFavoritesEntryActivity" |
| 146 | android:targetActivity="DialtactsActivity" |
The Android Open Source Project | 1f62096 | 2009-03-09 11:52:14 -0700 | [diff] [blame] | 147 | > |
| 148 | <intent-filter> |
| 149 | <action android:name="android.intent.action.MAIN" /> |
| 150 | <category android:name="android.intent.category.DEFAULT" /> |
| 151 | </intent-filter> |
| 152 | </activity-alias> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 153 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 154 | <!-- The actual list of contacts, usually embedded in ContactsActivity --> |
| 155 | <activity android:name="ContactsListActivity" |
| 156 | android:label="@string/contactsList" |
| 157 | android:clearTaskOnLaunch="true" |
| 158 | > |
| 159 | <intent-filter> |
| 160 | <action android:name="com.android.contacts.action.LIST_DEFAULT" /> |
| 161 | <category android:name="android.intent.category.DEFAULT" /> |
| 162 | <category android:name="android.intent.category.TAB" /> |
| 163 | </intent-filter> |
| 164 | |
| 165 | <intent-filter> |
| 166 | <action android:name="com.android.contacts.action.LIST_CONTACTS" /> |
| 167 | <category android:name="android.intent.category.DEFAULT" /> |
| 168 | <category android:name="android.intent.category.TAB" /> |
| 169 | </intent-filter> |
| 170 | |
| 171 | <intent-filter> |
| 172 | <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" /> |
| 173 | <category android:name="android.intent.category.DEFAULT" /> |
| 174 | <category android:name="android.intent.category.TAB" /> |
| 175 | </intent-filter> |
| 176 | |
| 177 | <intent-filter> |
| 178 | <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" /> |
| 179 | <category android:name="android.intent.category.DEFAULT" /> |
| 180 | <category android:name="android.intent.category.TAB" /> |
| 181 | </intent-filter> |
| 182 | |
| 183 | <intent-filter android:label="@string/starredList"> |
| 184 | <action android:name="com.android.contacts.action.LIST_STARRED" /> |
| 185 | <category android:name="android.intent.category.DEFAULT" /> |
| 186 | <category android:name="android.intent.category.TAB" /> |
| 187 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 188 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 189 | <intent-filter android:label="@string/frequentList"> |
| 190 | <action android:name="com.android.contacts.action.LIST_FREQUENT" /> |
| 191 | <category android:name="android.intent.category.DEFAULT" /> |
| 192 | <category android:name="android.intent.category.TAB" /> |
| 193 | </intent-filter> |
| 194 | |
| 195 | <intent-filter android:label="@string/strequentList"> |
| 196 | <action android:name="com.android.contacts.action.LIST_STREQUENT" /> |
| 197 | <category android:name="android.intent.category.DEFAULT" /> |
| 198 | <category android:name="android.intent.category.TAB" /> |
| 199 | </intent-filter> |
| 200 | |
| 201 | <intent-filter> |
| 202 | <action android:name="android.intent.action.INSERT_OR_EDIT" /> |
| 203 | <category android:name="android.intent.category.DEFAULT" /> |
| 204 | <data android:mimeType="vnd.android.cursor.item/person" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 205 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 206 | <data android:mimeType="vnd.android.cursor.item/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 207 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 208 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 209 | <intent-filter> |
| 210 | <action android:name="android.intent.action.PICK" /> |
| 211 | <category android:name="android.intent.category.DEFAULT" /> |
Evan Millar | c2d862e | 2009-08-31 12:52:39 -0700 | [diff] [blame] | 212 | <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" /> |
| 213 | <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" /> |
| 214 | <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" /> |
| 215 | <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" /> |
| 216 | <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" /> |
| 217 | <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] | 218 | </intent-filter> |
| 219 | |
| 220 | <intent-filter> |
| 221 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 222 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | 631c1ff | 2009-09-03 16:57:30 -0700 | [diff] [blame] | 223 | <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
| 224 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
| 225 | <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" /> |
| 226 | <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" /> |
| 227 | <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" /> |
| 228 | <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] | 229 | </intent-filter> |
| 230 | |
| 231 | <intent-filter> |
| 232 | <action android:name="android.intent.action.SEARCH" /> |
| 233 | <category android:name="android.intent.category.DEFAULT" /> |
| 234 | </intent-filter> |
| 235 | |
The Android Open Source Project | 37a16ac | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 236 | <meta-data android:name="android.app.searchable" |
| 237 | android:resource="@xml/searchable" |
| 238 | /> |
| 239 | </activity> |
| 240 | |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 241 | <!-- An activity for joining contacts --> |
| 242 | <activity android:name="ContactsListActivity$JoinContactActivity" |
| 243 | android:theme="@style/TallTitleBarTheme" |
| 244 | android:clearTaskOnLaunch="true" |
| 245 | > |
| 246 | <intent-filter> |
| 247 | <action android:name="com.android.contacts.action.JOIN_AGGREGATE" /> |
| 248 | <category android:name="android.intent.category.DEFAULT" /> |
| 249 | </intent-filter> |
| 250 | </activity> |
| 251 | |
| 252 | |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 253 | <!-- Used to select display and sync groups --> |
Dmitri Plotnikov | 1ea45f2 | 2010-02-04 17:17:44 -0800 | [diff] [blame] | 254 | <activity android:name=".ui.ContactsPreferencesActivity" android:label="@string/displayGroups" /> |
Jeff Sharkey | d5c5b9a | 2009-06-21 19:46:04 -0700 | [diff] [blame] | 255 | |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 256 | <activity |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 257 | android:name=".ui.ShowOrCreateActivity" |
| 258 | android:theme="@style/FullyTranslucent"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 259 | |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 260 | <intent-filter> |
| 261 | <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" /> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 262 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 263 | <data android:scheme="mailto" /> |
| 264 | <data android:scheme="tel" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 265 | </intent-filter> |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 266 | </activity> |
| 267 | |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 268 | <!-- Used to show QuickContact window over a translucent activity, which is a |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 269 | temporary hack until we add better framework support. --> |
| 270 | <activity |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 271 | android:name=".ui.QuickContactActivity" |
Jeff Sharkey | 735e8b1 | 2009-09-30 14:57:07 -0700 | [diff] [blame] | 272 | android:theme="@style/FullyTranslucent.QuickContact" |
| 273 | android:launchMode="singleTop" |
Jeff Sharkey | 5cbf6f4 | 2009-10-02 14:22:51 -0700 | [diff] [blame] | 274 | android:excludeFromRecents="true" |
| 275 | android:taskAffinity="android.task.quickcontact"> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 276 | |
| 277 | <intent-filter> |
Evan Millar | 33b0845 | 2009-09-30 21:45:08 -0700 | [diff] [blame] | 278 | <action android:name="com.android.contacts.action.QUICK_CONTACT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 279 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 280 | <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 281 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 282 | </activity> |
| 283 | |
| 284 | <activity-alias android:name="ContactShortcut" |
| 285 | android:targetActivity="ContactsListActivity" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 286 | android:label="@string/shortcutContact" |
| 287 | android:icon="@drawable/ic_launcher_shortcut_contact"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 288 | |
| 289 | <intent-filter> |
| 290 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 291 | <category android:name="android.intent.category.DEFAULT" /> |
| 292 | </intent-filter> |
| 293 | |
| 294 | </activity-alias> |
| 295 | |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 296 | <activity-alias android:name="alias.DialShortcut" |
| 297 | android:targetActivity="ContactsListActivity" |
| 298 | android:label="@string/shortcutDialContact" |
Mike Cleron | f143a45 | 2009-09-30 01:13:23 -0700 | [diff] [blame] | 299 | android:icon="@drawable/ic_launcher_shortcut_directdial"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 300 | |
| 301 | <intent-filter> |
| 302 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 303 | <category android:name="android.intent.category.DEFAULT" /> |
| 304 | </intent-filter> |
| 305 | |
| 306 | </activity-alias> |
| 307 | |
| 308 | <activity-alias android:name="alias.MessageShortcut" |
| 309 | android:targetActivity="ContactsListActivity" |
| 310 | android:label="@string/shortcutMessageContact" |
Mike Cleron | f143a45 | 2009-09-30 01:13:23 -0700 | [diff] [blame] | 311 | android:icon="@drawable/ic_launcher_shortcut_directmessage"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 312 | |
| 313 | <intent-filter> |
| 314 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 315 | <category android:name="android.intent.category.DEFAULT" /> |
| 316 | </intent-filter> |
| 317 | |
| 318 | </activity-alias> |
| 319 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 320 | <activity android:name="CallDetailActivity" |
| 321 | android:label="@string/callDetailTitle" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 322 | android:theme="@style/TallTitleBarTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 323 | > |
| 324 | <intent-filter> |
| 325 | <action android:name="android.intent.action.VIEW" /> |
| 326 | <category android:name="android.intent.category.DEFAULT" /> |
| 327 | <data android:mimeType="vnd.android.cursor.item/calls" /> |
| 328 | </intent-filter> |
| 329 | </activity> |
| 330 | |
| 331 | <!-- Views the details of a single contact --> |
| 332 | <activity android:name="ViewContactActivity" |
| 333 | android:label="@string/viewContactTitle" |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 334 | android:theme="@style/TallTitleBarTheme"> |
| 335 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 336 | <intent-filter android:label="@string/viewContactDesription"> |
| 337 | <action android:name="android.intent.action.VIEW" /> |
| 338 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 339 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
| 340 | <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] | 341 | <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] | 342 | </intent-filter> |
| 343 | </activity> |
| 344 | |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 345 | <!-- Edit or insert details for a contact --> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 346 | <activity |
| 347 | android:name=".ui.EditContactActivity" |
Evan Millar | 81f957d | 2009-10-12 15:09:21 -0700 | [diff] [blame] | 348 | android:windowSoftInputMode="stateHidden|adjustResize"> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 349 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 350 | <intent-filter android:label="@string/editContactDescription"> |
| 351 | <action android:name="android.intent.action.EDIT" /> |
| 352 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 353 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 354 | <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] | 355 | <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] | 356 | </intent-filter> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 357 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 358 | <intent-filter android:label="@string/insertContactDescription"> |
| 359 | <action android:name="android.intent.action.INSERT" /> |
| 360 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 361 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 362 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 363 | <data android:mimeType="vnd.android.cursor.dir/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 364 | </intent-filter> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 365 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 366 | </activity> |
| 367 | |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 368 | <!-- Stub service used to keep our process alive long enough for |
| 369 | background threads to finish their operations. --> |
| 370 | <service |
| 371 | android:name=".util.EmptyService" |
| 372 | android:exported="false" /> |
| 373 | |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 374 | <!-- Views the details of a single contact --> |
| 375 | <activity android:name="ContactOptionsActivity" |
| 376 | android:label="@string/contactOptionsTitle" |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 377 | > |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 378 | <intent-filter> |
| 379 | <action android:name="android.intent.action.EDIT" /> |
| 380 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 381 | </intent-filter> |
| 382 | </activity> |
| 383 | |
| 384 | <!-- Attaches a photo to a contact. Started from external applications --> |
| 385 | <activity android:name="AttachImage" |
| 386 | android:label="@string/attachToContact" |
| 387 | android:taskAffinity=""> |
| 388 | <intent-filter> |
| 389 | <action android:name="android.intent.action.ATTACH_DATA" /> |
| 390 | <data android:mimeType="image/*" /> |
| 391 | <category android:name="android.intent.category.DEFAULT" /> |
| 392 | </intent-filter> |
| 393 | /> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 394 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 395 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 396 | <!-- Makes .ContactsListActivity the search target for any activity in Contacts --> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 397 | <meta-data android:name="android.app.default_searchable" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 398 | android:value=".ContactsListActivity" /> |
| 399 | |
| 400 | |
| 401 | <!-- LIVE FOLDERS --> |
| 402 | <activity |
| 403 | android:name=".ContactsLiveFolders$AllContacts" |
| 404 | android:label="@string/liveFolderAll" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 405 | android:icon="@drawable/ic_launcher_folder_live_contacts"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 406 | <intent-filter> |
| 407 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 408 | <category android:name="android.intent.category.DEFAULT" /> |
| 409 | </intent-filter> |
| 410 | </activity> |
| 411 | |
| 412 | <activity |
| 413 | android:name=".ContactsLiveFolders$StarredContacts" |
| 414 | android:label="@string/liveFolderFavorites" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 415 | android:icon="@drawable/ic_launcher_folder_live_contacts_starred"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 416 | <intent-filter> |
| 417 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 418 | <category android:name="android.intent.category.DEFAULT" /> |
| 419 | </intent-filter> |
| 420 | </activity> |
| 421 | |
| 422 | <activity |
| 423 | android:name=".ContactsLiveFolders$PhoneContacts" |
| 424 | android:label="@string/liveFolderPhone" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 425 | android:icon="@drawable/ic_launcher_folder_live_contacts_phone"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 426 | <intent-filter> |
| 427 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 428 | <category android:name="android.intent.category.DEFAULT" /> |
| 429 | </intent-filter> |
| 430 | </activity> |
| 431 | |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 432 | <activity android:name=".VCardActivity" |
| 433 | android:theme="@android:style/Theme.NoTitleBar" > |
| 434 | <intent-filter> |
| 435 | <action android:name="android.intent.action.VIEW" /> |
| 436 | <data android:mimeType="text/x-vcard" /> |
| 437 | <category android:name="android.intent.category.DEFAULT" /> |
| 438 | </intent-filter> |
| 439 | </activity> |
| 440 | |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 441 | <activity android:name=".ImportVCardActivity" |
| 442 | android:theme="@style/BackgroundOnly" /> |
| 443 | |
Daisuke Miyakawa | 0bec3b9 | 2009-09-25 13:33:27 -0700 | [diff] [blame] | 444 | <activity android:name=".ExportVCardActivity" |
| 445 | android:theme="@style/BackgroundOnly" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 446 | </application> |
| 447 | </manifest> |