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" |
Dianne Hackborn | 15a5ad8 | 2010-06-22 16:09:43 -0700 | [diff] [blame] | 20 | android:sharedUserLabel="@string/sharedUserLabel" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 21 | > |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 22 | |
Jeff Hamilton | e788353 | 2010-02-11 16:25:48 -0600 | [diff] [blame] | 23 | <original-package android:name="com.android.contacts" /> |
| 24 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.CALL_PRIVILEGED" /> |
| 26 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 27 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 28 | <uses-permission android:name="android.permission.INTERNET" /> |
| 29 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
| 30 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
| 31 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" /> |
Daisuke Miyakawa | 2991dd9 | 2009-05-19 08:32:17 +0900 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Dmitri Plotnikov | daa2d5c | 2010-01-29 17:44:20 -0800 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
Fred Quintana | 104b792 | 2009-07-22 20:01:15 -0700 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
Nicolas Catania | 9bcf470 | 2009-11-06 13:19:43 -0800 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.VIBRATE" /> |
Dmitri Plotnikov | 9981172 | 2010-11-01 18:21:22 -0700 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 38 | |
| 39 | <application |
Dmitri Plotnikov | f049ff0 | 2010-11-29 10:15:24 -0800 | [diff] [blame^] | 40 | android:name="com.android.contacts.ContactsApplication" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 41 | android:label="@string/contactsList" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 42 | android:icon="@mipmap/ic_launcher_contacts" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 43 | android:process="android.process.acore" |
| 44 | android:taskAffinity="android.task.contacts" |
Daniel Lehmann | 57b5aa1 | 2010-09-23 17:42:23 -0700 | [diff] [blame] | 45 | android:hardwareAccelerated="true" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 46 | > |
| 47 | |
| 48 | <!-- A virtual 12 key dialer --> |
| 49 | <activity android:name="TwelveKeyDialer" |
| 50 | android:launchMode="singleTop" |
| 51 | > |
| 52 | <intent-filter> |
| 53 | <action android:name="com.android.phone.action.TOUCH_DIALER" /> |
| 54 | <category android:name="android.intent.category.DEFAULT" /> |
| 55 | <category android:name="android.intent.category.TAB" /> |
| 56 | </intent-filter> |
| 57 | </activity> |
| 58 | |
| 59 | <!-- A list of recent calls --> |
| 60 | <activity android:name="RecentCallsListActivity" |
| 61 | android:label="@string/recentCallsIconLabel" |
| 62 | > |
| 63 | <intent-filter> |
| 64 | <action android:name="com.android.phone.action.RECENT_CALLS" /> |
| 65 | <category android:name="android.intent.category.DEFAULT" /> |
| 66 | <category android:name="android.intent.category.TAB" /> |
| 67 | </intent-filter> |
| 68 | </activity> |
| 69 | |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 70 | <!-- Intercept Dialer Intents for devices without a phone. |
| 71 | This activity should have the same intent filters as the DialtactsActivity, |
| 72 | so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we |
| 73 | don't want this to show up in the Launcher. The priorities of the intent-filters |
| 74 | are set lower, so that the user does not see a disambig dialog --> |
| 75 | <activity |
| 76 | android:name=".activities.NonPhoneActivity" |
| 77 | android:theme="@style/NonPhoneActivityTheme" |
| 78 | > |
| 79 | <intent-filter android:priority="-1"> |
| 80 | <action android:name="android.intent.action.DIAL" /> |
| 81 | <category android:name="android.intent.category.DEFAULT" /> |
| 82 | <category android:name="android.intent.category.BROWSABLE" /> |
| 83 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 84 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 85 | </intent-filter> |
| 86 | <intent-filter android:priority="-1"> |
| 87 | <action android:name="android.intent.action.DIAL" /> |
| 88 | <category android:name="android.intent.category.DEFAULT" /> |
| 89 | <category android:name="android.intent.category.BROWSABLE" /> |
| 90 | <data android:scheme="voicemail" /> |
| 91 | </intent-filter> |
| 92 | <intent-filter android:priority="-1"> |
| 93 | <action android:name="android.intent.action.DIAL" /> |
| 94 | <category android:name="android.intent.category.DEFAULT" /> |
| 95 | </intent-filter> |
| 96 | <intent-filter android:priority="-1"> |
| 97 | <action android:name="android.intent.action.MAIN" /> |
| 98 | <category android:name="android.intent.category.DEFAULT" /> |
| 99 | <category android:name="android.intent.category.BROWSABLE" /> |
| 100 | </intent-filter> |
| 101 | <intent-filter android:priority="-1"> |
| 102 | <action android:name="android.intent.action.VIEW" /> |
| 103 | <action android:name="android.intent.action.DIAL" /> |
| 104 | <category android:name="android.intent.category.DEFAULT" /> |
| 105 | <category android:name="android.intent.category.BROWSABLE" /> |
| 106 | <data android:scheme="tel" /> |
| 107 | </intent-filter> |
| 108 | <intent-filter android:priority="-1"> |
| 109 | <action android:name="android.intent.action.VIEW" /> |
| 110 | <category android:name="android.intent.category.DEFAULT" /> |
| 111 | <category android:name="android.intent.category.BROWSABLE" /> |
| 112 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 113 | </intent-filter> |
| 114 | <intent-filter android:priority="-1"> |
| 115 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 116 | <category android:name="android.intent.category.DEFAULT" /> |
| 117 | <category android:name="android.intent.category.BROWSABLE" /> |
| 118 | </intent-filter> |
| 119 | </activity> |
| 120 | |
Daniel Lehmann | 7675e12 | 2010-04-21 17:31:11 -0700 | [diff] [blame] | 121 | <!-- Tab container for all tabs --> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 122 | <activity android:name="DialtactsActivity" |
| 123 | android:label="@string/launcherDialer" |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 124 | android:theme="@style/DialtactsTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 125 | android:launchMode="singleTask" |
| 126 | android:clearTaskOnLaunch="true" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 127 | android:icon="@mipmap/ic_launcher_phone" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 128 | android:screenOrientation="nosensor" |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 129 | android:enabled="@*android:bool/config_voice_capable" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 130 | > |
| 131 | <intent-filter> |
| 132 | <action android:name="android.intent.action.DIAL" /> |
| 133 | <category android:name="android.intent.category.DEFAULT" /> |
| 134 | <category android:name="android.intent.category.BROWSABLE" /> |
| 135 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 136 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 137 | </intent-filter> |
| 138 | <intent-filter> |
| 139 | <action android:name="android.intent.action.DIAL" /> |
| 140 | <category android:name="android.intent.category.DEFAULT" /> |
| 141 | <category android:name="android.intent.category.BROWSABLE" /> |
| 142 | <data android:scheme="voicemail" /> |
| 143 | </intent-filter> |
| 144 | <intent-filter> |
| 145 | <action android:name="android.intent.action.DIAL" /> |
| 146 | <category android:name="android.intent.category.DEFAULT" /> |
| 147 | </intent-filter> |
| 148 | <intent-filter> |
| 149 | <action android:name="android.intent.action.MAIN" /> |
| 150 | <category android:name="android.intent.category.DEFAULT" /> |
| 151 | <category android:name="android.intent.category.LAUNCHER" /> |
| 152 | <category android:name="android.intent.category.BROWSABLE" /> |
| 153 | </intent-filter> |
| 154 | <intent-filter> |
| 155 | <action android:name="android.intent.action.VIEW" /> |
| 156 | <action android:name="android.intent.action.DIAL" /> |
| 157 | <category android:name="android.intent.category.DEFAULT" /> |
| 158 | <category android:name="android.intent.category.BROWSABLE" /> |
| 159 | <data android:scheme="tel" /> |
| 160 | </intent-filter> |
| 161 | <intent-filter> |
| 162 | <action android:name="android.intent.action.VIEW" /> |
| 163 | <category android:name="android.intent.category.DEFAULT" /> |
| 164 | <category android:name="android.intent.category.BROWSABLE" /> |
| 165 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 166 | </intent-filter> |
| 167 | <intent-filter> |
| 168 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 169 | <category android:name="android.intent.category.DEFAULT" /> |
| 170 | <category android:name="android.intent.category.BROWSABLE" /> |
| 171 | </intent-filter> |
| 172 | </activity> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 173 | |
Jeff Hamilton | df4b146 | 2010-06-28 10:40:26 -0500 | [diff] [blame] | 174 | <!-- Front door proxy that picks the right UI based on the screen config --> |
| 175 | <activity android:name=".activities.ContactsFrontDoor" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 176 | android:label="@string/contactsList" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 177 | android:icon="@mipmap/ic_launcher_contacts" |
Jeff Hamilton | df4b146 | 2010-06-28 10:40:26 -0500 | [diff] [blame] | 178 | android:theme="@android:style/Theme.NoTitleBar" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 179 | > |
| 180 | <intent-filter> |
| 181 | <action android:name="android.intent.action.MAIN" /> |
| 182 | <category android:name="android.intent.category.DEFAULT" /> |
| 183 | <category android:name="android.intent.category.LAUNCHER" /> |
Dmitri Plotnikov | 032bb36 | 2009-05-06 17:05:39 -0700 | [diff] [blame] | 184 | <category android:name="android.intent.category.BROWSABLE" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 185 | </intent-filter> |
| 186 | |
| 187 | <intent-filter> |
| 188 | <action android:name="android.intent.action.VIEW" /> |
| 189 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 2428f62 | 2009-09-13 01:08:43 -0700 | [diff] [blame] | 190 | <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" /> |
| 191 | <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" /> |
Dmitri Plotnikov | 90715b3 | 2010-11-23 10:57:23 -0800 | [diff] [blame] | 192 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
| 193 | <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
| 194 | <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] | 195 | </intent-filter> |
Jeff Hamilton | df4b146 | 2010-06-28 10:40:26 -0500 | [diff] [blame] | 196 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 197 | |
Dmitri Plotnikov | 27834b2 | 2010-07-01 14:10:08 -0700 | [diff] [blame] | 198 | <!-- The actual list of contacts --> |
Dmitri Plotnikov | cfa3900 | 2010-07-09 18:05:17 -0700 | [diff] [blame] | 199 | <activity android:name=".activities.ContactBrowserActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 200 | android:label="@string/contactsList" |
| 201 | android:clearTaskOnLaunch="true" |
Dmitri Plotnikov | e1d4c06 | 2010-07-15 16:20:36 -0700 | [diff] [blame] | 202 | android:theme="@style/ContactBrowserTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 203 | > |
| 204 | <intent-filter> |
| 205 | <action android:name="com.android.contacts.action.LIST_DEFAULT" /> |
| 206 | <category android:name="android.intent.category.DEFAULT" /> |
| 207 | <category android:name="android.intent.category.TAB" /> |
| 208 | </intent-filter> |
| 209 | |
| 210 | <intent-filter> |
| 211 | <action android:name="com.android.contacts.action.LIST_CONTACTS" /> |
| 212 | <category android:name="android.intent.category.DEFAULT" /> |
| 213 | <category android:name="android.intent.category.TAB" /> |
| 214 | </intent-filter> |
| 215 | |
| 216 | <intent-filter> |
| 217 | <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" /> |
| 218 | <category android:name="android.intent.category.DEFAULT" /> |
| 219 | <category android:name="android.intent.category.TAB" /> |
| 220 | </intent-filter> |
| 221 | |
| 222 | <intent-filter> |
| 223 | <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" /> |
| 224 | <category android:name="android.intent.category.DEFAULT" /> |
| 225 | <category android:name="android.intent.category.TAB" /> |
| 226 | </intent-filter> |
| 227 | |
| 228 | <intent-filter android:label="@string/starredList"> |
| 229 | <action android:name="com.android.contacts.action.LIST_STARRED" /> |
| 230 | <category android:name="android.intent.category.DEFAULT" /> |
| 231 | <category android:name="android.intent.category.TAB" /> |
| 232 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 233 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 234 | <intent-filter android:label="@string/frequentList"> |
| 235 | <action android:name="com.android.contacts.action.LIST_FREQUENT" /> |
| 236 | <category android:name="android.intent.category.DEFAULT" /> |
| 237 | <category android:name="android.intent.category.TAB" /> |
| 238 | </intent-filter> |
| 239 | |
| 240 | <intent-filter android:label="@string/strequentList"> |
| 241 | <action android:name="com.android.contacts.action.LIST_STREQUENT" /> |
| 242 | <category android:name="android.intent.category.DEFAULT" /> |
| 243 | <category android:name="android.intent.category.TAB" /> |
| 244 | </intent-filter> |
Dmitri Plotnikov | 27b97bc | 2010-10-07 18:06:09 -0700 | [diff] [blame] | 245 | |
| 246 | <intent-filter> |
| 247 | <action android:name="android.intent.action.SEARCH" /> |
| 248 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | 7b8f746 | 2010-11-02 17:25:08 -0700 | [diff] [blame] | 249 | </intent-filter> |
| 250 | |
| 251 | <intent-filter> |
| 252 | <action android:name="com.android.contacts.action.FILTER_CONTACTS" /> |
| 253 | <category android:name="android.intent.category.DEFAULT" /> |
| 254 | <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" /> |
Dmitri Plotnikov | 27b97bc | 2010-10-07 18:06:09 -0700 | [diff] [blame] | 255 | </intent-filter> |
| 256 | |
| 257 | <meta-data android:name="android.app.searchable" |
| 258 | android:resource="@xml/searchable" |
| 259 | /> |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 260 | </activity> |
| 261 | |
| 262 | <activity android:name=".activities.ContactSelectionActivity" |
| 263 | android:label="@string/contactsList" |
| 264 | android:clearTaskOnLaunch="true" |
Dmitri Plotnikov | e1d4c06 | 2010-07-15 16:20:36 -0700 | [diff] [blame] | 265 | android:theme="@style/ContactPickerTheme" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 266 | > |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 267 | <intent-filter> |
| 268 | <action android:name="android.intent.action.INSERT_OR_EDIT" /> |
| 269 | <category android:name="android.intent.category.DEFAULT" /> |
| 270 | <data android:mimeType="vnd.android.cursor.item/person" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 271 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 272 | <data android:mimeType="vnd.android.cursor.item/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 273 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 274 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 275 | <intent-filter> |
| 276 | <action android:name="android.intent.action.PICK" /> |
| 277 | <category android:name="android.intent.category.DEFAULT" /> |
Evan Millar | c2d862e | 2009-08-31 12:52:39 -0700 | [diff] [blame] | 278 | <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" /> |
| 279 | <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" /> |
| 280 | <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" /> |
| 281 | <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" /> |
| 282 | <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" /> |
| 283 | <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] | 284 | </intent-filter> |
| 285 | |
| 286 | <intent-filter> |
| 287 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 288 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | 631c1ff | 2009-09-03 16:57:30 -0700 | [diff] [blame] | 289 | <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" /> |
| 290 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
| 291 | <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" /> |
| 292 | <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" /> |
| 293 | <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" /> |
| 294 | <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] | 295 | </intent-filter> |
The Android Open Source Project | 37a16ac | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 296 | </activity> |
| 297 | |
Dmitri Plotnikov | 27834b2 | 2010-07-01 14:10:08 -0700 | [diff] [blame] | 298 | <!-- Backwards compatibility: somebody may have hard coded this activity name --> |
| 299 | <activity-alias android:name="ContactsListActivity" |
Dmitri Plotnikov | cfa3900 | 2010-07-09 18:05:17 -0700 | [diff] [blame] | 300 | android:targetActivity=".activities.ContactBrowserActivity" |
Dmitri Plotnikov | 27834b2 | 2010-07-01 14:10:08 -0700 | [diff] [blame] | 301 | /> |
| 302 | |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 303 | <!-- An activity for joining contacts --> |
Dmitri Plotnikov | d21ddb2 | 2010-11-03 14:25:59 -0700 | [diff] [blame] | 304 | <activity android:name=".activities.JoinContactActivity" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 305 | android:theme="@style/JoinContactActivityTheme" |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 306 | android:clearTaskOnLaunch="true" |
| 307 | > |
| 308 | <intent-filter> |
Dmitri Plotnikov | 501b7ea | 2010-04-07 17:20:49 -0700 | [diff] [blame] | 309 | <action android:name="com.android.contacts.action.JOIN_CONTACT" /> |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 310 | <category android:name="android.intent.category.DEFAULT" /> |
| 311 | </intent-filter> |
| 312 | </activity> |
| 313 | |
Dmitri Plotnikov | c85ad18 | 2010-09-17 18:12:49 -0700 | [diff] [blame] | 314 | <!-- Used to set options --> |
Daniel Lehmann | 1010574 | 2010-07-15 17:35:57 -0700 | [diff] [blame] | 315 | <activity |
Dmitri Plotnikov | c85ad18 | 2010-09-17 18:12:49 -0700 | [diff] [blame] | 316 | android:name=".preference.ContactsPreferenceActivity" |
| 317 | android:label="@string/activity_title_settings" |
Daniel Lehmann | 1010574 | 2010-07-15 17:35:57 -0700 | [diff] [blame] | 318 | android:theme="@style/ContactsPreferencesTheme" /> |
Jeff Sharkey | d5c5b9a | 2009-06-21 19:46:04 -0700 | [diff] [blame] | 319 | |
Dmitri Plotnikov | d6e6b8a | 2010-09-15 16:23:02 -0700 | [diff] [blame] | 320 | <!-- Used to select display and sync groups --> |
| 321 | <activity |
| 322 | android:name=".list.CustomContactListFilterActivity" |
| 323 | android:label="@string/custom_list_filter" |
Dmitri Plotnikov | a4d6a3b | 2010-10-06 18:04:31 -0700 | [diff] [blame] | 324 | android:theme="@style/CustomContactListFilterTheme" /> |
Dmitri Plotnikov | d6e6b8a | 2010-09-15 16:23:02 -0700 | [diff] [blame] | 325 | |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 326 | <activity |
Daniel Lehmann | 72af89f | 2010-10-18 15:15:59 -0700 | [diff] [blame] | 327 | android:name=".activities.ShowOrCreateActivity" |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 328 | android:theme="@style/FullyTranslucent"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 329 | |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 330 | <intent-filter> |
| 331 | <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" /> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 332 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 333 | <data android:scheme="mailto" /> |
| 334 | <data android:scheme="tel" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 335 | </intent-filter> |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 336 | </activity> |
| 337 | |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 338 | <!-- Used to show QuickContact window over a translucent activity, which is a |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 339 | temporary hack until we add better framework support. --> |
| 340 | <activity |
Daniel Lehmann | 72af89f | 2010-10-18 15:15:59 -0700 | [diff] [blame] | 341 | android:name=".quickcontact.QuickContactActivity" |
Jeff Sharkey | 735e8b1 | 2009-09-30 14:57:07 -0700 | [diff] [blame] | 342 | android:theme="@style/FullyTranslucent.QuickContact" |
| 343 | android:launchMode="singleTop" |
Jeff Sharkey | 5cbf6f4 | 2009-10-02 14:22:51 -0700 | [diff] [blame] | 344 | android:excludeFromRecents="true" |
Dmitri Plotnikov | ad3bd44 | 2010-03-23 22:49:43 -0700 | [diff] [blame] | 345 | android:taskAffinity="android.task.quickcontact" |
| 346 | android:windowSoftInputMode="stateUnchanged" |
| 347 | > |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 348 | |
| 349 | <intent-filter> |
Evan Millar | 33b0845 | 2009-09-30 21:45:08 -0700 | [diff] [blame] | 350 | <action android:name="com.android.contacts.action.QUICK_CONTACT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 351 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 352 | <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] | 353 | <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] | 354 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 355 | </activity> |
| 356 | |
Daniel Lehmann | af8e386 | 2010-11-19 15:38:44 -0800 | [diff] [blame] | 357 | <!-- Flushes the QuickContact IntentCache --> |
| 358 | <receiver android:name=".quickcontact.PackageIntentReceiver"> |
| 359 | <intent-filter> |
| 360 | <action android:name="android.intent.action.PACKAGE_ADDED" /> |
| 361 | <data android:scheme="package" /> |
| 362 | </intent-filter> |
| 363 | <intent-filter> |
| 364 | <action android:name="android.intent.action.PACKAGE_REPLACED" /> |
| 365 | <data android:scheme="package" /> |
| 366 | </intent-filter> |
| 367 | <intent-filter> |
| 368 | <action android:name="android.intent.action.PACKAGE_REMOVED" /> |
| 369 | <data android:scheme="package" /> |
| 370 | </intent-filter> |
| 371 | <intent-filter> |
| 372 | <action android:name="android.intent.action.PACKAGE_CHANGED" /> |
| 373 | <data android:scheme="package" /> |
| 374 | </intent-filter> |
| 375 | </receiver> |
| 376 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 377 | <activity-alias android:name="ContactShortcut" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 378 | android:targetActivity=".activities.ContactSelectionActivity" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 379 | android:label="@string/shortcutContact" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 380 | android:icon="@mipmap/ic_launcher_shortcut_contact"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 381 | |
| 382 | <intent-filter> |
| 383 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 384 | <category android:name="android.intent.category.DEFAULT" /> |
| 385 | </intent-filter> |
| 386 | |
| 387 | </activity-alias> |
| 388 | |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 389 | <activity-alias android:name="alias.DialShortcut" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 390 | android:targetActivity=".activities.ContactSelectionActivity" |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 391 | android:label="@string/shortcutDialContact" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 392 | android:icon="@mipmap/ic_launcher_shortcut_directdial" |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 393 | android:enabled="@*android:bool/config_voice_capable"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 394 | |
| 395 | <intent-filter> |
| 396 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 397 | <category android:name="android.intent.category.DEFAULT" /> |
Bernd Holzhey | a497ce5 | 2010-03-31 10:06:24 +0200 | [diff] [blame] | 398 | <category android:name="android.intent.category.CAR_MODE" /> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 399 | </intent-filter> |
| 400 | |
| 401 | </activity-alias> |
| 402 | |
| 403 | <activity-alias android:name="alias.MessageShortcut" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 404 | android:targetActivity=".activities.ContactSelectionActivity" |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 405 | android:label="@string/shortcutMessageContact" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 406 | android:icon="@mipmap/ic_launcher_shortcut_directmessage" |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 407 | android:enabled="@*android:bool/config_voice_capable"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 408 | |
| 409 | <intent-filter> |
| 410 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 411 | <category android:name="android.intent.category.DEFAULT" /> |
| 412 | </intent-filter> |
| 413 | |
| 414 | </activity-alias> |
| 415 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 416 | <activity android:name="CallDetailActivity" |
| 417 | android:label="@string/callDetailTitle" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 418 | android:theme="@style/CallDetailActivityTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 419 | > |
| 420 | <intent-filter> |
| 421 | <action android:name="android.intent.action.VIEW" /> |
| 422 | <category android:name="android.intent.category.DEFAULT" /> |
| 423 | <data android:mimeType="vnd.android.cursor.item/calls" /> |
| 424 | </intent-filter> |
| 425 | </activity> |
| 426 | |
| 427 | <!-- Views the details of a single contact --> |
Daniel Lehmann | 4cd9441 | 2010-04-08 16:44:36 -0700 | [diff] [blame] | 428 | <activity android:name=".activities.ContactDetailActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 429 | android:label="@string/viewContactTitle" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 430 | android:theme="@style/ContactDetailActivityTheme"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 431 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 432 | <intent-filter android:label="@string/viewContactDesription"> |
| 433 | <action android:name="android.intent.action.VIEW" /> |
| 434 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 435 | </intent-filter> |
| 436 | </activity> |
| 437 | |
Daniel Lehmann | f319cf8 | 2010-06-25 17:41:13 -0700 | [diff] [blame] | 438 | <!-- Create a new or edit an existing contact --> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 439 | <activity |
Daniel Lehmann | cdef2b6 | 2010-06-06 18:25:49 -0700 | [diff] [blame] | 440 | android:name=".activities.ContactEditorActivity" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 441 | android:theme="@style/ContactEditorActivityTheme" |
Daniel Lehmann | 3a12077 | 2010-06-21 16:21:35 -0700 | [diff] [blame] | 442 | android:windowSoftInputMode="adjustResize"> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 443 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 444 | <intent-filter android:label="@string/editContactDescription"> |
| 445 | <action android:name="android.intent.action.EDIT" /> |
| 446 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 447 | <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 448 | <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] | 449 | <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] | 450 | </intent-filter> |
| 451 | <intent-filter android:label="@string/insertContactDescription"> |
| 452 | <action android:name="android.intent.action.INSERT" /> |
| 453 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 454 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 455 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 456 | <data android:mimeType="vnd.android.cursor.dir/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 457 | </intent-filter> |
Daniel Lehmann | cdef2b6 | 2010-06-06 18:25:49 -0700 | [diff] [blame] | 458 | </activity> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 459 | |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 460 | <!-- Stub service used to keep our process alive long enough for |
| 461 | background threads to finish their operations. --> |
| 462 | <service |
| 463 | android:name=".util.EmptyService" |
| 464 | android:exported="false" /> |
| 465 | |
Daniel Lehmann | 173ffe1 | 2010-06-14 18:19:10 -0700 | [diff] [blame] | 466 | <!-- Service to save a contact --> |
| 467 | <service |
| 468 | android:name=".views.ContactSaveService" |
| 469 | android:exported="false" /> |
| 470 | |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 471 | <!-- Views the details of a single contact --> |
| 472 | <activity android:name="ContactOptionsActivity" |
| 473 | android:label="@string/contactOptionsTitle" |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 474 | > |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 475 | <intent-filter> |
| 476 | <action android:name="android.intent.action.EDIT" /> |
| 477 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 478 | </intent-filter> |
| 479 | </activity> |
| 480 | |
| 481 | <!-- Attaches a photo to a contact. Started from external applications --> |
| 482 | <activity android:name="AttachImage" |
Daniel Lehmann | 9442ef4 | 2010-11-09 17:35:53 -0800 | [diff] [blame] | 483 | android:label="@string/attach_photo_dialog_title" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 484 | android:taskAffinity=""> |
| 485 | <intent-filter> |
| 486 | <action android:name="android.intent.action.ATTACH_DATA" /> |
| 487 | <data android:mimeType="image/*" /> |
| 488 | <category android:name="android.intent.category.DEFAULT" /> |
| 489 | </intent-filter> |
| 490 | /> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 491 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 492 | |
Dmitri Plotnikov | 884e393 | 2010-05-13 19:13:51 -0700 | [diff] [blame] | 493 | <!-- Interstitial activity that shows a phone disambig dialog --> |
| 494 | <activity android:name="CallContactActivity" |
| 495 | android:theme="@android:style/Theme.Translucent"> |
| 496 | </activity> |
| 497 | |
Dmitri Plotnikov | ea82f90 | 2010-08-24 17:22:29 -0700 | [diff] [blame] | 498 | <!-- Makes .ContactBrowserActivity the search target for any activity in Contacts --> |
Jeff Sharkey | 6831cd9 | 2010-02-28 19:56:58 -0800 | [diff] [blame] | 499 | <meta-data |
| 500 | android:name="android.app.default_searchable" |
Dmitri Plotnikov | cfa3900 | 2010-07-09 18:05:17 -0700 | [diff] [blame] | 501 | android:value=".activities.ContactBrowserActivity" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 502 | |
| 503 | |
| 504 | <!-- LIVE FOLDERS --> |
| 505 | <activity |
| 506 | android:name=".ContactsLiveFolders$AllContacts" |
| 507 | android:label="@string/liveFolderAll" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 508 | android:icon="@mipmap/ic_launcher_folder_live_contacts"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 509 | <intent-filter> |
| 510 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 511 | <category android:name="android.intent.category.DEFAULT" /> |
| 512 | </intent-filter> |
| 513 | </activity> |
| 514 | |
| 515 | <activity |
| 516 | android:name=".ContactsLiveFolders$StarredContacts" |
| 517 | android:label="@string/liveFolderFavorites" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 518 | android:icon="@mipmap/ic_launcher_folder_live_contacts_starred"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 519 | <intent-filter> |
| 520 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 521 | <category android:name="android.intent.category.DEFAULT" /> |
| 522 | </intent-filter> |
| 523 | </activity> |
| 524 | |
| 525 | <activity |
| 526 | android:name=".ContactsLiveFolders$PhoneContacts" |
| 527 | android:label="@string/liveFolderPhone" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 528 | android:icon="@mipmap/ic_launcher_folder_live_contacts_phone"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 529 | <intent-filter> |
| 530 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 531 | <category android:name="android.intent.category.DEFAULT" /> |
| 532 | </intent-filter> |
| 533 | </activity> |
| 534 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 535 | <!-- vCard related --> |
| 536 | <activity android:name=".vcard.ImportVCardActivity" |
Daisuke Miyakawa | 74d59da | 2010-10-28 12:04:30 -0700 | [diff] [blame] | 537 | android:configChanges="orientation" |
Daisuke Miyakawa | 6448da7 | 2010-04-02 12:06:44 +0900 | [diff] [blame] | 538 | android:theme="@style/BackgroundOnly"> |
| 539 | <intent-filter> |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 540 | <action android:name="android.intent.action.VIEW" /> |
Attila Bodis | 1261e13 | 2010-03-18 22:06:37 -0700 | [diff] [blame] | 541 | <data android:mimeType="text/directory" /> |
Daisuke Miyakawa | 92ba98a | 2010-06-22 09:12:19 +0900 | [diff] [blame] | 542 | <data android:mimeType="text/vcard" /> |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 543 | <data android:mimeType="text/x-vcard" /> |
| 544 | <category android:name="android.intent.category.DEFAULT" /> |
| 545 | </intent-filter> |
| 546 | </activity> |
| 547 | |
Daisuke Miyakawa | ab59660 | 2010-11-18 17:28:02 -0800 | [diff] [blame] | 548 | <activity android:name=".vcard.CancelActivity" |
Daisuke Miyakawa | 18b5190 | 2010-08-19 14:13:38 -0700 | [diff] [blame] | 549 | android:theme="@style/BackgroundOnly" /> |
| 550 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 551 | <activity android:name=".vcard.SelectAccountActivity" |
Daisuke Miyakawa | 6d2f27f | 2010-04-21 16:11:38 +0900 | [diff] [blame] | 552 | android:theme="@style/BackgroundOnly" /> |
| 553 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 554 | <activity android:name=".vcard.ExportVCardActivity" |
Daisuke Miyakawa | 0bec3b9 | 2009-09-25 13:33:27 -0700 | [diff] [blame] | 555 | android:theme="@style/BackgroundOnly" /> |
Dmitri Plotnikov | e124722 | 2010-06-02 18:14:21 -0700 | [diff] [blame] | 556 | |
Daisuke Miyakawa | d8fb81a | 2010-06-08 17:44:22 -0700 | [diff] [blame] | 557 | <service |
| 558 | android:name=".vcard.VCardService" |
| 559 | android:exported="false" /> |
| 560 | |
Dmitri Plotnikov | e124722 | 2010-06-02 18:14:21 -0700 | [diff] [blame] | 561 | <!-- Pinned header list demo --> |
| 562 | <activity android:name=".widget.PinnedHeaderListDemoActivity"> |
| 563 | <intent-filter> |
| 564 | <action android:name="android.intent.action.MAIN" /> |
| 565 | <category android:name="android.intent.category.DEFAULT" /> |
| 566 | </intent-filter> |
| 567 | </activity> |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 568 | |
| 569 | <!-- The widget that shows details and the social stream of a contact --> |
Daniel Lehmann | b93a26c | 2010-10-18 14:07:05 -0700 | [diff] [blame] | 570 | <receiver android:name=".socialwidget.SocialWidgetProvider" |
Daniel Lehmann | b0ab5d7 | 2010-11-03 16:21:22 -0700 | [diff] [blame] | 571 | android:label="@string/social_widget_label" > |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 572 | <intent-filter> |
| 573 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 574 | </intent-filter> |
| 575 | <meta-data android:name="android.appwidget.provider" |
Daniel Lehmann | b93a26c | 2010-10-18 14:07:05 -0700 | [diff] [blame] | 576 | android:resource="@xml/social_widget_info" /> |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 577 | </receiver> |
| 578 | |
| 579 | <activity |
Daniel Lehmann | b93a26c | 2010-10-18 14:07:05 -0700 | [diff] [blame] | 580 | android:name=".socialwidget.SocialWidgetConfigureActivity" |
Daniel Lehmann | b0ab5d7 | 2010-11-03 16:21:22 -0700 | [diff] [blame] | 581 | android:theme="@android:style/Theme.Translucent.NoTitleBar" > |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 582 | <intent-filter> |
| 583 | <action android:name="android.intent.action.APPWIDGET_PICK" /> |
| 584 | </intent-filter> |
| 585 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 586 | </application> |
| 587 | </manifest> |