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