/frameworks/ex/common/java/com/android/common/ |
NetworkConnectivityListener.java | 35 * @deprecated Code tempted to use this class should simply listen for connectivity intents
|
/frameworks/ex/common/java/com/android/common/speech/ |
LoggingEvents.java | 21 * keys and values of extras to be specified in logging broadcast intents.
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
ContactPickerFragment.java | 32 * picking a contact with one of the PICK or SHORTCUT intents).
|
/packages/apps/Contacts/tests/res/values/ |
donottranslate_strings.xml | 18 <string name="contactsIntents">Contacts Intents</string>
|
/packages/apps/Email/src/com/android/email/activity/ |
ShortcutPicker.java | 110 * intents that you will send back.
|
/packages/apps/Mms/src/com/android/mms/ui/ |
ConversationList.java | 242 // Handle intents that occur after the activity has already been created. 464 intent.putExtra(ContactsContract.Intents.Insert.EMAIL, address); 466 intent.putExtra(ContactsContract.Intents.Insert.PHONE, address); 467 intent.putExtra(ContactsContract.Intents.Insert.PHONE_TYPE, [all...] |
/packages/apps/Mms/src/com/android/mms/widget/ |
MmsWidgetProvider.java | 60 // The base class AppWidgetProvider's onReceive handles the normal widget intents. Here
|
/packages/apps/Music/src/com/android/music/ |
MediaAppWidgetProvider.java | 159 // Link actions buttons to intents
|
/packages/apps/Phone/tests/src/com/android/phone/tests/ |
CallDialTest.java | 40 * CALL and DIAL intents.
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
ShortcutsProvider.java | 33 * Handles broadcast intents for adding shortcuts to QSB.
|
Source.java | 34 * Gets the name activity that intents from this source are sent to.
|
/packages/providers/DownloadProvider/ |
AndroidManifest.xml | 18 <!-- Allows to send download completed intents -->
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
DownloadProviderFunctionalTest.java | 38 * {@link DownloadService} with start intents. It sets up a {@link MockWebServer} running on the
|
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/ |
BluetoothTestUtils.java | 437 mask = 0; // Don't check for received intents since we might have missed them. 506 mask = 0; // Don't check for received intents since we might have missed them. 800 mask = 0; // Don't check for received intents since we might have missed them. [all...] |
/frameworks/base/docs/html/guide/topics/providers/ |
content-provider-basics.jd | 65 <a href="#Intents">Data access via intents</a> [all...] |
/frameworks/base/docs/html/guide/topics/manifest/ |
manifest-intro.jd | 319 receivers) are activated by <i>intents</i>. An intent is a 329 Components advertise their capabilities — the kinds of intents they can 331 must learn which intents a component can handle before it launches the component, 348 <a href="{@docRoot}guide/components/intents-filters.html">Intents
|
/frameworks/base/core/java/android/content/ |
Context.java | 49 * broadcasting and receiving intents, etc. [all...] |
/frameworks/base/docs/html/guide/components/ |
activities.jd | 210 start them yourself using explicit intents (as discussed in the following section).</p> 212 <p>However, if you want your activity to respond to implicit intents that are delivered from 225 <p>For more information about how your activities can respond to intents, see the <a 226 href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a> 255 intents are really valuable—you can create an intent that describes an action you want to 330 <p>For more information about using intents, see the <a 331 href="{@docRoot}guide/components/intents-filters.html">Intents and Intent [all...] |
services.jd | 222 some functionality where explicit intents are used to reference your service (read the blog post, <a 231 invoke the service using implicit intents. By declaring intent filters, components 248 href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a> 325 <li>Creates a default worker thread that executes all intents delivered to {@link 510 intents to deliver. This is the safest option to avoid running your service when not necessary 517 null intent, unless there were pending intents to start the service, in which case, 518 those intents are delivered. This is suitable for media players (or similar services) that are not 524 service. Any pending intents are delivered in turn. This is suitable for services that are [all...] |
/frameworks/base/core/java/android/app/ |
ContextImpl.java | 126 "IntentReceiver components are not allowed to register to receive intents"); 911 (Activity)null, intents, options); local [all...] |
/frameworks/base/core/java/android/nfc/ |
NfcAdapter.java | 151 * {@link #ACTION_TAG_DISCOVERED} intents. 157 * This extra is mandatory for {@link #ACTION_NDEF_DISCOVERED} intents, 159 * {@link #ACTION_TAG_DISCOVERED} intents.<p> 169 * {@link #ACTION_TAG_DISCOVERED} intents. 186 * intents to request the current power state. Possible values are: [all...] |
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
jdiff_statistics.html | 338 <TD><A HREF="android.provider.Contacts.Intents.html"> 339 android.provider.Contacts.Intents</A></TD> 343 <TD><A HREF="android.provider.Contacts.Intents.Insert.html"> 344 android.provider.Contacts.Intents.Insert</A></TD> 348 <TD><A HREF="android.provider.Contacts.Intents.UI.html"> 349 android.provider.Contacts.Intents.UI</A></TD>
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
NetworkController.java | 224 filter.addAction(Telephony.Intents.SPN_STRINGS_UPDATED_ACTION); 347 } else if (action.equals(Telephony.Intents.SPN_STRINGS_UPDATED_ACTION)) { 348 updateNetworkName(intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_SPN, false), 349 intent.getStringExtra(Telephony.Intents.EXTRA_SPN), 350 intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_PLMN, false), 351 intent.getStringExtra(Telephony.Intents.EXTRA_PLMN)); [all...] |
/frameworks/base/services/java/com/android/server/location/ |
GpsLocationProvider.java | 51 import android.provider.Telephony.Sms.Intents; 359 } else if (action.equals(Intents.DATA_SMS_RECEIVED_ACTION)) { 361 } else if (action.equals(Intents.WAP_PUSH_RECEIVED_ACTION)) { 368 SmsMessage[] messages = Intents.getMessagesFromIntent(intent); 402 intentFilter.addAction(Intents.DATA_SMS_RECEIVED_ACTION); 408 intentFilter.addAction(Intents.WAP_PUSH_RECEIVED_ACTION); [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
CdmaServiceStateTracker.java | 48 import android.provider.Telephony.Intents; 541 Intent intent = new Intent(Intents.SPN_STRINGS_UPDATED_ACTION); 543 intent.putExtra(Intents.EXTRA_SHOW_SPN, false); 544 intent.putExtra(Intents.EXTRA_SPN, ""); 545 intent.putExtra(Intents.EXTRA_SHOW_PLMN, showPlmn); 546 intent.putExtra(Intents.EXTRA_PLMN, plmn); [all...] |