/packages/apps/Browser/src/com/android/browser/ |
BrowserActivity.java | 120 // Only process intents if the screen is on and the device is unlocked 131 Log.v(LOGTAG, "ignore intents: " + ignore);
|
UploadHandler.java | 226 private Intent createChooserIntent(Intent... intents) { 228 chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, intents);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DbModifierWithNotification.java | 201 // Must be done only once, even if there are multiple broadcast intents. 204 // Now fire individual intents.
|
/frameworks/base/docs/html/guide/appendix/ |
glossary.jd | 134 href="{@docRoot}guide/components/intents-filters.html">Intents and 141 tell the system what types of Intents each of its components is willing to 148 href="{@docRoot}guide/components/intents-filters.html">Intents and 154 <dd>An application class that listens for Intents that are broadcast,
|
/packages/apps/Mms/src/com/android/mms/transaction/ |
TransactionService.java | 62 * <li>The composer/viewer activities of the MMS Client (Through intents)</li> 88 * Used to identify notification intents broadcasted by the 108 * Used as extra key in notification intents broadcasted by the TransactionService 109 * when a Transaction is completed (TRANSACTION_COMPLETED_ACTION intents). 116 * Used as extra key in notification intents broadcasted by the TransactionService 117 * when a Transaction is completed (TRANSACTION_COMPLETED_ACTION intents). [all...] |
/frameworks/base/docs/html/guide/google/gcm/ |
gcm.jd | 31 <li><a href="#handling_intents">Handling Intents sent by GCM</a> 212 <p class="note"><strong>Note:</strong> When users uninstall an application, it is not automatically unregistered on GCM. It is only unregistered when the GCM server tries to send a message to the device and the device answers that the application is uninstalled or it does not have a broadcast receiver configured to receive <code>com.google.android.c2dm.intent.RECEIVE</code> intents. At that point, you server should mark the device as unregistered (the server will receive a <code><a href="#unreg_device">NotRegistered</a></code> error). 294 <li>Receivers for the <code>com.google.android.c2dm.intent.RECEIVE</code> and <code>com.google.android.c2dm.intent.REGISTRATION</code> intents.</li> 318 of messages are implemented as <a href="{@docRoot}guide/components/intents-filters.html">Intents</a>.</li> 319 <li>An intent service to handle the intents received by the broadcast receiver.</li> 397 <h3 id="handling_intents">Handling Intents sent by GCM</h3> 400 defines a broadcast receiver for the <code>com.google.android.c2dm.intent.REGISTRATION</code> and <code>com.google.android.c2dm.intent.RECEIVE</code> intents. 401 These <a href="{@docRoot}guide/components/intents-filters.html">intents</a> are sent by GCM to indicate that a device was registered (or unregistered), or to deliver mess (…) [all...] |
gs.jd | 130 <p> This broadcast receiver is responsible for handling the 2 intents that can be sent by GCM (<code>com.google.android.c2dm.intent.RECEIVE</code> and <code>com.google.android.c2dm.intent.REGISTRATION</code>) and should be defined in the manifest (rather than programmatically) so that these intents can be received even if the application is not running. By setting the <code>com.google.android.c2dm.permission.SEND</code> permission, you are ensuring that only intents sent by the GCM system framework are sent to the receiver (a regular application cannot issue intents with that permission).</p> 178 <p>Once the sanity checks are done, the device calls <code>GCMRegsistrar.register()</code> to register the device, passing the <code>SENDER_ID</code> you got when you signed up for GCM. But since the <code>GCMRegistrar</code> singleton keeps track of the registration ID upon the arrival of registration intents, you can call <code>GCMRegistrar.getRegistrationId()</code> first to check if the device is already registered.</p>
|
/frameworks/base/services/java/com/android/server/ |
StatusBarManagerService.java | 637 else if (Telephony.Intents.SPN_STRINGS_UPDATED_ACTION.equals(action)) { 638 updateNetworkName(intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_SPN, false), 639 intent.getStringExtra(Telephony.Intents.EXTRA_SPN), 640 intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_PLMN, false), 641 intent.getStringExtra(Telephony.Intents.EXTRA_PLMN));
|
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
fields_index_all.html | 365 <nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION" class="hiddenlink" target="rightframe">EXTRA_CREATE_DESCRIPTION</A> 371 <nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_FORCE_CREATE" class="hiddenlink" target="rightframe">EXTRA_FORCE_CREATE</A> [all...] |
/frameworks/base/core/java/android/app/ |
Instrumentation.java | 434 * @param which The set of intents this monitor is responsible for. 611 * @param filter The set of intents this monitor is responsible for. [all...] |
/frameworks/base/core/java/android/content/ |
IntentSender.java | 154 * is no longer allowing more intents to be sent through it. 178 * is required to hold. This is only valid for broadcast intents, and 185 * is no longer allowing more intents to be sent through it.
|
/frameworks/base/docs/html/guide/topics/providers/ |
content-provider-creating.jd | 59 <a href="#Intents">Intents and Data Access</a> 177 the provider's application to handle intents, also define intent actions, extras data, 183 For more information about intents, see the 184 section <a href="#Intents">Intents and Data Access</a>. [all...] |
/frameworks/base/docs/html/sdk/api_diff/11/changes/ |
pkg_android.provider.html | 239 <A NAME="ContactsContract.Intents.Insert"></A> 240 <nobr><A HREF="android.provider.ContactsContract.Intents.Insert.html">ContactsContract.Intents.<br>Insert</A></nobr>
|
/frameworks/base/docs/html/training/basics/firstapp/ |
starting-activity.jd | 102 app?s "intent to do something." You can use intents for a wide 126 specifies the exact app component to which the intent should be given. However, intents 131 href="{@docRoot}training/basics/intents/index.html">Interacting with Other Apps</a>.</p>
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ConfirmAddDetailActivity.java | 85 * {@link android.provider.ContactsContract.Intents.Insert#PHONE} with type 86 * {@link android.provider.ContactsContract.Intents.Insert#PHONE_TYPE} or 87 * {@link android.provider.ContactsContract.Intents.Insert#EMAIL} with type 88 * {@link android.provider.ContactsContract.Intents.Insert#EMAIL_TYPE} intent keys. 242 if (extras.containsKey(ContactsContract.Intents.Insert.PHONE)) { 244 } else if (extras.containsKey(ContactsContract.Intents.Insert.EMAIL)) { [all...] |
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
LookupActivity.java | 109 // Handle incoming intents as possible searches or links 214 * Because we're singleTop, we handle our own new intents. These usually
|
/frameworks/base/docs/html/guide/topics/manifest/ |
data-element.jd | 65 <a href="{@docRoot}guide/components/intents-filters.html">Intents and
|
receiver-element.jd | 28 applications to receive intents that are broadcast by the system or by other 71 receiver is intended to receive intents broadcast by the system or other applications,
|
/frameworks/base/docs/html/training/camera/ |
photobasics.jd | 28 <li><a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
SmsCbHeader.java | 30 * {@link android.provider.Telephony.Sms.Intents#SMS_CB_RECEIVED_ACTION} or 31 * {@link android.provider.Telephony.Sms.Intents#SMS_EMERGENCY_CB_RECEIVED_ACTION} intent.
|
/packages/apps/BasicSmsReceiver/tests/src/com/android/basicsmsreceiver/ |
DialogSmsDisplayTests.java | 88 // Register broadcast receivers for SMS sent and delivered intents 145 new IntentFilter(Telephony.Sms.Intents.SMS_RECEIVED_ACTION));
|
/development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/ |
SimpleMenu.java | 160 Intent[] intents, Intent intent, int i3, MenuItem[] menuItems) {
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
LauncherShortcuts.java | 93 * intents that you will send back.
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
SmsMessagingDemo.java | 125 // Register broadcast receivers for SMS sent and delivered intents
|
/development/samples/AppNavigation/res/values/ |
strings.xml | 36 <string name="content_view_description">This activity can receive ACTION_VIEW intents with the mimetype \"application/x-example\", sent by the outside task component of this demo. If you launched the activity this way then it will be on the viewing activity\'s task stack. Press the back button to finish this activity and return to the activity that wanted to view the content. Press the up button in the action bar to jump back into the main demo task with a synthesized back stack. This matches the pattern for content viewers such as a photo gallery or video player.</string>
|