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 | </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> |
| 198 | <action android:name="android.intent.action.INSERT_OR_EDIT" /> |
| 199 | <category android:name="android.intent.category.DEFAULT" /> |
| 200 | <data android:mimeType="vnd.android.cursor.item/person" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 201 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 202 | <data android:mimeType="vnd.android.cursor.item/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 203 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 204 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 205 | <intent-filter> |
| 206 | <action android:name="android.intent.action.PICK" /> |
| 207 | <category android:name="android.intent.category.DEFAULT" /> |
Evan Millar | c2d862e | 2009-08-31 12:52:39 -0700 | [diff] [blame] | 208 | <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" /> |
| 209 | <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" /> |
| 210 | <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" /> |
| 211 | <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" /> |
| 212 | <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" /> |
| 213 | <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] | 214 | </intent-filter> |
| 215 | |
| 216 | <intent-filter> |
| 217 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 218 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | 631c1ff | 2009-09-03 16:57:30 -0700 | [diff] [blame] | 219 | <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
| 220 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
| 221 | <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" /> |
| 222 | <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" /> |
| 223 | <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" /> |
| 224 | <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] | 225 | </intent-filter> |
| 226 | |
| 227 | <intent-filter> |
| 228 | <action android:name="android.intent.action.SEARCH" /> |
| 229 | <category android:name="android.intent.category.DEFAULT" /> |
| 230 | </intent-filter> |
| 231 | |
The Android Open Source Project | 37a16ac | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 232 | <meta-data android:name="android.app.searchable" |
| 233 | android:resource="@xml/searchable" |
| 234 | /> |
| 235 | </activity> |
| 236 | |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 237 | <!-- An activity for joining contacts --> |
| 238 | <activity android:name="ContactsListActivity$JoinContactActivity" |
| 239 | android:theme="@style/TallTitleBarTheme" |
| 240 | android:clearTaskOnLaunch="true" |
| 241 | > |
| 242 | <intent-filter> |
| 243 | <action android:name="com.android.contacts.action.JOIN_AGGREGATE" /> |
| 244 | <category android:name="android.intent.category.DEFAULT" /> |
| 245 | </intent-filter> |
| 246 | </activity> |
| 247 | |
Dmitri Plotnikov | 8e86b75 | 2010-02-22 17:47:57 -0800 | [diff] [blame] | 248 | <!-- The contacts search/filter UI --> |
| 249 | <activity android:name="ContactsListActivity$ContactsSearchActivity" |
| 250 | android:theme="@style/ContactsSearchTheme" |
| 251 | android:windowSoftInputMode="stateAlwaysVisible|adjustPan" |
| 252 | > |
| 253 | <intent-filter> |
| 254 | <action android:name="com.android.contacts.action.FILTER_CONTACTS" /> |
| 255 | <category android:name="android.intent.category.DEFAULT" /> |
| 256 | <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" /> |
| 257 | </intent-filter> |
| 258 | </activity> |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 259 | |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 260 | <!-- Used to select display and sync groups --> |
Dmitri Plotnikov | 1ea45f2 | 2010-02-04 17:17:44 -0800 | [diff] [blame] | 261 | <activity android:name=".ui.ContactsPreferencesActivity" android:label="@string/displayGroups" /> |
Jeff Sharkey | d5c5b9a | 2009-06-21 19:46:04 -0700 | [diff] [blame] | 262 | |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 263 | <activity |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 264 | android:name=".ui.ShowOrCreateActivity" |
| 265 | android:theme="@style/FullyTranslucent"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 266 | |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 267 | <intent-filter> |
| 268 | <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" /> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 269 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 270 | <data android:scheme="mailto" /> |
| 271 | <data android:scheme="tel" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 272 | </intent-filter> |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 273 | </activity> |
| 274 | |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 275 | <!-- Used to show QuickContact window over a translucent activity, which is a |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 276 | temporary hack until we add better framework support. --> |
| 277 | <activity |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 278 | android:name=".ui.QuickContactActivity" |
Jeff Sharkey | 735e8b1 | 2009-09-30 14:57:07 -0700 | [diff] [blame] | 279 | android:theme="@style/FullyTranslucent.QuickContact" |
| 280 | android:launchMode="singleTop" |
Jeff Sharkey | 5cbf6f4 | 2009-10-02 14:22:51 -0700 | [diff] [blame] | 281 | android:excludeFromRecents="true" |
| 282 | android:taskAffinity="android.task.quickcontact"> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 283 | |
| 284 | <intent-filter> |
Evan Millar | 33b0845 | 2009-09-30 21:45:08 -0700 | [diff] [blame] | 285 | <action android:name="com.android.contacts.action.QUICK_CONTACT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 286 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 287 | <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] | 288 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 289 | </activity> |
| 290 | |
| 291 | <activity-alias android:name="ContactShortcut" |
| 292 | android:targetActivity="ContactsListActivity" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 293 | android:label="@string/shortcutContact" |
| 294 | android:icon="@drawable/ic_launcher_shortcut_contact"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 295 | |
| 296 | <intent-filter> |
| 297 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 298 | <category android:name="android.intent.category.DEFAULT" /> |
| 299 | </intent-filter> |
| 300 | |
| 301 | </activity-alias> |
| 302 | |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 303 | <activity-alias android:name="alias.DialShortcut" |
| 304 | android:targetActivity="ContactsListActivity" |
| 305 | android:label="@string/shortcutDialContact" |
Mike Cleron | f143a45 | 2009-09-30 01:13:23 -0700 | [diff] [blame] | 306 | android:icon="@drawable/ic_launcher_shortcut_directdial"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 307 | |
| 308 | <intent-filter> |
| 309 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 310 | <category android:name="android.intent.category.DEFAULT" /> |
| 311 | </intent-filter> |
| 312 | |
| 313 | </activity-alias> |
| 314 | |
| 315 | <activity-alias android:name="alias.MessageShortcut" |
| 316 | android:targetActivity="ContactsListActivity" |
| 317 | android:label="@string/shortcutMessageContact" |
Mike Cleron | f143a45 | 2009-09-30 01:13:23 -0700 | [diff] [blame] | 318 | android:icon="@drawable/ic_launcher_shortcut_directmessage"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 319 | |
| 320 | <intent-filter> |
| 321 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 322 | <category android:name="android.intent.category.DEFAULT" /> |
| 323 | </intent-filter> |
| 324 | |
| 325 | </activity-alias> |
| 326 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 327 | <activity android:name="CallDetailActivity" |
| 328 | android:label="@string/callDetailTitle" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 329 | android:theme="@style/TallTitleBarTheme" |
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.VIEW" /> |
| 333 | <category android:name="android.intent.category.DEFAULT" /> |
| 334 | <data android:mimeType="vnd.android.cursor.item/calls" /> |
| 335 | </intent-filter> |
| 336 | </activity> |
| 337 | |
| 338 | <!-- Views the details of a single contact --> |
| 339 | <activity android:name="ViewContactActivity" |
| 340 | android:label="@string/viewContactTitle" |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 341 | android:theme="@style/TallTitleBarTheme"> |
| 342 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 343 | <intent-filter android:label="@string/viewContactDesription"> |
| 344 | <action android:name="android.intent.action.VIEW" /> |
| 345 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 346 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
| 347 | <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] | 348 | <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] | 349 | </intent-filter> |
| 350 | </activity> |
| 351 | |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 352 | <!-- Edit or insert details for a contact --> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 353 | <activity |
| 354 | android:name=".ui.EditContactActivity" |
Evan Millar | 81f957d | 2009-10-12 15:09:21 -0700 | [diff] [blame] | 355 | android:windowSoftInputMode="stateHidden|adjustResize"> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 356 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 357 | <intent-filter android:label="@string/editContactDescription"> |
| 358 | <action android:name="android.intent.action.EDIT" /> |
| 359 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 360 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 361 | <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] | 362 | <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] | 363 | </intent-filter> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 364 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 365 | <intent-filter android:label="@string/insertContactDescription"> |
| 366 | <action android:name="android.intent.action.INSERT" /> |
| 367 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 368 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 369 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 370 | <data android:mimeType="vnd.android.cursor.dir/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 371 | </intent-filter> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 372 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 373 | </activity> |
| 374 | |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 375 | <!-- Stub service used to keep our process alive long enough for |
| 376 | background threads to finish their operations. --> |
| 377 | <service |
| 378 | android:name=".util.EmptyService" |
| 379 | android:exported="false" /> |
| 380 | |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 381 | <!-- Views the details of a single contact --> |
| 382 | <activity android:name="ContactOptionsActivity" |
| 383 | android:label="@string/contactOptionsTitle" |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 384 | > |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 385 | <intent-filter> |
| 386 | <action android:name="android.intent.action.EDIT" /> |
| 387 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 388 | </intent-filter> |
| 389 | </activity> |
| 390 | |
| 391 | <!-- Attaches a photo to a contact. Started from external applications --> |
| 392 | <activity android:name="AttachImage" |
| 393 | android:label="@string/attachToContact" |
| 394 | android:taskAffinity=""> |
| 395 | <intent-filter> |
| 396 | <action android:name="android.intent.action.ATTACH_DATA" /> |
| 397 | <data android:mimeType="image/*" /> |
| 398 | <category android:name="android.intent.category.DEFAULT" /> |
| 399 | </intent-filter> |
| 400 | /> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 401 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 402 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 403 | <!-- Makes .ContactsListActivity the search target for any activity in Contacts --> |
Jeff Sharkey | 6831cd9 | 2010-02-28 19:56:58 -0800 | [diff] [blame] | 404 | <meta-data |
| 405 | android:name="android.app.default_searchable" |
| 406 | android:value=".ContactsListActivity" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 407 | |
| 408 | |
| 409 | <!-- LIVE FOLDERS --> |
| 410 | <activity |
| 411 | android:name=".ContactsLiveFolders$AllContacts" |
| 412 | android:label="@string/liveFolderAll" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 413 | android:icon="@drawable/ic_launcher_folder_live_contacts"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 414 | <intent-filter> |
| 415 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 416 | <category android:name="android.intent.category.DEFAULT" /> |
| 417 | </intent-filter> |
| 418 | </activity> |
| 419 | |
| 420 | <activity |
| 421 | android:name=".ContactsLiveFolders$StarredContacts" |
| 422 | android:label="@string/liveFolderFavorites" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 423 | android:icon="@drawable/ic_launcher_folder_live_contacts_starred"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 424 | <intent-filter> |
| 425 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 426 | <category android:name="android.intent.category.DEFAULT" /> |
| 427 | </intent-filter> |
| 428 | </activity> |
| 429 | |
| 430 | <activity |
| 431 | android:name=".ContactsLiveFolders$PhoneContacts" |
| 432 | android:label="@string/liveFolderPhone" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 433 | android:icon="@drawable/ic_launcher_folder_live_contacts_phone"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 434 | <intent-filter> |
| 435 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 436 | <category android:name="android.intent.category.DEFAULT" /> |
| 437 | </intent-filter> |
| 438 | </activity> |
| 439 | |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 440 | <activity android:name=".VCardActivity" |
| 441 | android:theme="@android:style/Theme.NoTitleBar" > |
| 442 | <intent-filter> |
| 443 | <action android:name="android.intent.action.VIEW" /> |
| 444 | <data android:mimeType="text/x-vcard" /> |
| 445 | <category android:name="android.intent.category.DEFAULT" /> |
| 446 | </intent-filter> |
| 447 | </activity> |
| 448 | |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 449 | <activity android:name=".ImportVCardActivity" |
| 450 | android:theme="@style/BackgroundOnly" /> |
| 451 | |
Daisuke Miyakawa | 0bec3b9 | 2009-09-25 13:33:27 -0700 | [diff] [blame] | 452 | <activity android:name=".ExportVCardActivity" |
| 453 | android:theme="@style/BackgroundOnly" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 454 | </application> |
| 455 | </manifest> |