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