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" |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 65 | android:theme="@style/DialtactsTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 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> |
| 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 | |
| 248 | |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 249 | <!-- Used to select display and sync groups --> |
Jeff Sharkey | 170f775 | 2009-08-16 00:12:48 -0700 | [diff] [blame] | 250 | <activity android:name=".ui.DisplayGroupsActivity" android:label="@string/displayGroups" /> |
Jeff Sharkey | d5c5b9a | 2009-06-21 19:46:04 -0700 | [diff] [blame] | 251 | |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 252 | <activity |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 253 | android:name=".ui.ShowOrCreateActivity" |
| 254 | android:theme="@style/FullyTranslucent"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 255 | |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 256 | <intent-filter> |
| 257 | <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" /> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 258 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 259 | <data android:scheme="mailto" /> |
| 260 | <data android:scheme="tel" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 261 | </intent-filter> |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 262 | </activity> |
| 263 | |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 264 | <!-- Used to show QuickContact window over a translucent activity, which is a |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 265 | temporary hack until we add better framework support. --> |
| 266 | <activity |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 267 | android:name=".ui.QuickContactActivity" |
Jeff Sharkey | 735e8b1 | 2009-09-30 14:57:07 -0700 | [diff] [blame] | 268 | android:theme="@style/FullyTranslucent.QuickContact" |
| 269 | android:launchMode="singleTop" |
Jeff Sharkey | 5cbf6f4 | 2009-10-02 14:22:51 -0700 | [diff] [blame^] | 270 | android:excludeFromRecents="true" |
| 271 | android:taskAffinity="android.task.quickcontact"> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 272 | |
| 273 | <intent-filter> |
Evan Millar | 33b0845 | 2009-09-30 21:45:08 -0700 | [diff] [blame] | 274 | <action android:name="com.android.contacts.action.QUICK_CONTACT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 275 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 276 | <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] | 277 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 278 | </activity> |
| 279 | |
| 280 | <activity-alias android:name="ContactShortcut" |
| 281 | android:targetActivity="ContactsListActivity" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 282 | android:label="@string/shortcutContact" |
| 283 | android:icon="@drawable/ic_launcher_shortcut_contact"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 284 | |
| 285 | <intent-filter> |
| 286 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 287 | <category android:name="android.intent.category.DEFAULT" /> |
| 288 | </intent-filter> |
| 289 | |
| 290 | </activity-alias> |
| 291 | |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 292 | <activity-alias android:name="alias.DialShortcut" |
| 293 | android:targetActivity="ContactsListActivity" |
| 294 | android:label="@string/shortcutDialContact" |
Mike Cleron | f143a45 | 2009-09-30 01:13:23 -0700 | [diff] [blame] | 295 | android:icon="@drawable/ic_launcher_shortcut_directdial"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 296 | |
| 297 | <intent-filter> |
| 298 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 299 | <category android:name="android.intent.category.DEFAULT" /> |
| 300 | </intent-filter> |
| 301 | |
| 302 | </activity-alias> |
| 303 | |
| 304 | <activity-alias android:name="alias.MessageShortcut" |
| 305 | android:targetActivity="ContactsListActivity" |
| 306 | android:label="@string/shortcutMessageContact" |
Mike Cleron | f143a45 | 2009-09-30 01:13:23 -0700 | [diff] [blame] | 307 | android:icon="@drawable/ic_launcher_shortcut_directmessage"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 308 | |
| 309 | <intent-filter> |
| 310 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 311 | <category android:name="android.intent.category.DEFAULT" /> |
| 312 | </intent-filter> |
| 313 | |
| 314 | </activity-alias> |
| 315 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 316 | <activity android:name="CallDetailActivity" |
| 317 | android:label="@string/callDetailTitle" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 318 | android:theme="@style/TallTitleBarTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 319 | > |
| 320 | <intent-filter> |
| 321 | <action android:name="android.intent.action.VIEW" /> |
| 322 | <category android:name="android.intent.category.DEFAULT" /> |
| 323 | <data android:mimeType="vnd.android.cursor.item/calls" /> |
| 324 | </intent-filter> |
| 325 | </activity> |
| 326 | |
| 327 | <!-- Views the details of a single contact --> |
| 328 | <activity android:name="ViewContactActivity" |
| 329 | android:label="@string/viewContactTitle" |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 330 | android:theme="@style/TallTitleBarTheme"> |
| 331 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 332 | <intent-filter android:label="@string/viewContactDesription"> |
| 333 | <action android:name="android.intent.action.VIEW" /> |
| 334 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 335 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
| 336 | <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] | 337 | <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] | 338 | </intent-filter> |
| 339 | </activity> |
| 340 | |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 341 | <!-- Edit or insert details for a contact --> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 342 | <activity |
| 343 | android:name=".ui.EditContactActivity" |
Jeff Hamilton | 5297c6a | 2009-10-01 02:22:33 -0700 | [diff] [blame] | 344 | android:label="@string/editContactDescription" |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 345 | android:windowSoftInputMode="stateVisible|adjustResize"> |
| 346 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 347 | <intent-filter android:label="@string/editContactDescription"> |
| 348 | <action android:name="android.intent.action.EDIT" /> |
| 349 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 350 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 351 | <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] | 352 | <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] | 353 | </intent-filter> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 354 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 355 | <intent-filter android:label="@string/insertContactDescription"> |
| 356 | <action android:name="android.intent.action.INSERT" /> |
| 357 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 358 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 359 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 360 | <data android:mimeType="vnd.android.cursor.dir/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 361 | </intent-filter> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 362 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 363 | </activity> |
| 364 | |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 365 | <!-- Stub service used to keep our process alive long enough for |
| 366 | background threads to finish their operations. --> |
| 367 | <service |
| 368 | android:name=".util.EmptyService" |
| 369 | android:exported="false" /> |
| 370 | |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 371 | <!-- Views the details of a single contact --> |
| 372 | <activity android:name="ContactOptionsActivity" |
| 373 | android:label="@string/contactOptionsTitle" |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 374 | > |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 375 | <intent-filter> |
| 376 | <action android:name="android.intent.action.EDIT" /> |
| 377 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 378 | </intent-filter> |
| 379 | </activity> |
| 380 | |
| 381 | <!-- Attaches a photo to a contact. Started from external applications --> |
| 382 | <activity android:name="AttachImage" |
| 383 | android:label="@string/attachToContact" |
| 384 | android:taskAffinity=""> |
| 385 | <intent-filter> |
| 386 | <action android:name="android.intent.action.ATTACH_DATA" /> |
| 387 | <data android:mimeType="image/*" /> |
| 388 | <category android:name="android.intent.category.DEFAULT" /> |
| 389 | </intent-filter> |
| 390 | /> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 391 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 392 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 393 | <!-- Makes .ContactsListActivity the search target for any activity in Contacts --> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 394 | <meta-data android:name="android.app.default_searchable" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 395 | android:value=".ContactsListActivity" /> |
| 396 | |
| 397 | |
| 398 | <!-- LIVE FOLDERS --> |
| 399 | <activity |
| 400 | android:name=".ContactsLiveFolders$AllContacts" |
| 401 | android:label="@string/liveFolderAll" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 402 | android:icon="@drawable/ic_launcher_folder_live_contacts"> |
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$StarredContacts" |
| 411 | android:label="@string/liveFolderFavorites" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 412 | android:icon="@drawable/ic_launcher_folder_live_contacts_starred"> |
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 | |
| 419 | <activity |
| 420 | android:name=".ContactsLiveFolders$PhoneContacts" |
| 421 | android:label="@string/liveFolderPhone" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 422 | android:icon="@drawable/ic_launcher_folder_live_contacts_phone"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 423 | <intent-filter> |
| 424 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 425 | <category android:name="android.intent.category.DEFAULT" /> |
| 426 | </intent-filter> |
| 427 | </activity> |
| 428 | |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 429 | <activity android:name=".ImportVCardActivity" |
| 430 | android:theme="@style/BackgroundOnly" /> |
| 431 | |
Daisuke Miyakawa | 0bec3b9 | 2009-09-25 13:33:27 -0700 | [diff] [blame] | 432 | <activity android:name=".ExportVCardActivity" |
| 433 | android:theme="@style/BackgroundOnly" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 434 | </application> |
| 435 | </manifest> |