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