HomeSort by relevance Sort by last modified time
    Searched full:intents (Results 226 - 250 of 513) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/src/com/android/phone/
SipBroadcastReceiver.java 38 * Broadcast receiver that handles SIP-related 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 42 * {@link DownloadService} with start intents. It sets up a {@link MockWebServer} running on the
  /cts/apps/CtsVerifier/res/values/
strings.xml 324 <!-- Strings for Camera Intents -->
325 <string name="camera_intents">Camera Intents</string>
327 This test verifies that the default camera app is firing intents
329 default camera app is invoked via intents, the launch intents work,
330 and the broadcast intents are received when appropriate per the SDK
338 <string name="ci_intents_label">Intents Test</string>
    [all...]
  /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/support/v7/mediarouter/src/android/support/v7/media/
MediaControlIntent.java 24 * Constants for media control intents.
76 * take the form of intents in a similar manner to other intents used to start activities
77 * or send broadcasts. The difference is that media control intents are directed to
685 * Included in broadcast intents sent to
711 * Included in broadcast intents sent t
    [all...]
  /frameworks/base/core/java/android/app/
ContextImpl.java 140 "BroadcastReceiver components are not allowed to register to receive intents");
153 "BroadcastReceiver components are not allowed to register to receive intents");
993 (Activity)null, intents, options, userHandle.getIdentifier()); local
1007 (Activity)null, intents, options); local
    [all...]
AlarmManager.java 100 * scheduled (with the equality of two intents being defined by
110 * Alarm intents are delivered with a data extra of type int called
Service.java 126 * not stopped until started intents have been processed.
351 * {@link #onStartCommand}), and there are no new start intents to
357 * are no pending Intents to deliver.
382 * it is not finished processing all Intents sent to it (and any such
    [all...]
  /frameworks/base/docs/html/guide/topics/providers/
content-provider-basics.jd 63 <a href="#Intents">Data access via intents</a>
    [all...]
contacts-provider.jd     [all...]
  /frameworks/base/docs/html/guide/topics/manifest/
manifest-intro.jd 320 receivers) are activated by <i>intents</i>. An intent is a
330 Components advertise their capabilities &mdash; the kinds of intents they can
332 must learn which intents a component can handle before it launches the component,
349 <a href="{@docRoot}guide/components/intents-filters.html">Intents
  /frameworks/base/core/java/android/content/
Context.java 56 * broadcasting and receiving intents, etc.
    [all...]
  /frameworks/base/docs/html/guide/components/
activities.jd 211 start them yourself using explicit intents (as discussed in the following section).</p>
213 <p>However, if you want your activity to respond to implicit intents that are delivered from
226 <p>For more information about how your activities can respond to intents, see the <a
227 href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a>
256 intents are really valuable&mdash;you can create an intent that describes an action you want to
331 <p>For more information about using intents, see the <a
332 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>
312 <li>Creates a default worker thread that executes all intents delivered to {@link
497 intents to deliver. This is the safest option to avoid running your service when not necessary
504 null intent, unless there were pending intents to start the service, in which case,
505 those intents are delivered. This is suitable for media players (or similar services) that are not
511 service. Any pending intents are delivered in turn. This is suitable for services that are
    [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.
185 * 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>
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertService.java 109 if (Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION.equals(action) ||
110 Telephony.Sms.Intents.SMS_CB_RECEIVED_ACTION.equals(action)) {
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java 202 * For intents used to notify the user that a download exceeds a size threshold, if this extra
294 // sending spoofed intents.
  /development/samples/training/threadsample/src/com/example/android/threadsample/
RSSPullService.java 39 * register to receive broadcast Intents with category = CATEGORY_DEFAULT and action

Completed in 653 milliseconds

1 2 3 4 5 6 7 8 91011>>