HomeSort by relevance Sort by last modified time
    Searched full:intents (Results 51 - 75 of 516) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/docs/html/guide/topics/manifest/
action-element.jd 19 <a href="{@docRoot}guide/components/intents-filters.html">Intents and
category-element.jd 15 <a href="{@docRoot}guide/components/intents-filters.html">Intents and
  /frameworks/base/docs/html/training/monitoring-device-state/
manifest-receivers.jd 24 <li><a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a>
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsRejectedReceiver.java 44 Telephony.Sms.Intents.SMS_REJECTED_ACTION.equals(intent.getAction())) {
47 boolean outOfMemory = reason == Telephony.Sms.Intents.RESULT_SMS_OUT_OF_MEMORY;
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
alldiffs_index_changes.html 116 <nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ACTION" class="hiddenlink" target="rightframe">ACTION</A>
207 <nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ATTACH_IMAGE" class="hiddenlink" target="rightframe">ATTACH_IMAGE</A>
324 <A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
348 <!-- Class Contacts.Intents -->
349 <i>Contacts.Intents</i><br>
350 &nbsp;&nbsp;<A HREF="android.provider.Contacts.Intents.html" class="hiddenlink" target="rightframe">android.provider</A><br
    [all...]
  /frameworks/base/docs/html/guide/components/
intents-filters.jd 1 page.title=Intents and Intent Filters
31 broadcast receivers &mdash; are activated through messages, called <i>intents</i>.
37 delivering intents to each type of component:
67 There is no overlap within these messaging systems: Broadcast intents are delivered
75 rules Android uses to map intents to components &mdash; how it resolves which
76 component should receive an intent message. For intents that don't explicitly
123 intents, the action that took place and is being reported. The Intent class defines
309 <a href="{@docRoot}guide/appendix/g-app-intents.html">list of intents</a>
317 Intents can be divided into two groups
    [all...]
  /cts/tests/src/android/content/cts/
AvailableIntentsActivity.java 25 * This is a stub activity for test available intents. We do not care about
  /frameworks/base/core/java/android/content/
IIntentReceiver.aidl 25 * called when it receives intents.
  /frameworks/base/core/tests/coretests/src/android/content/
BrickDeniedTest.java 22 /** Test to make sure brick intents <b>don't</b> work without permission. */
  /frameworks/base/docs/html-intl/ja/training/monitoring-device-state/
connectivity-monitoring.jd 27 <li><a href="{@docRoot}guide/components/intents-filters.html">??????????? ????</a>
index.jd 16 <li>?<a href="{@docRoot}guide/components/intents-filters.html">??????????? ????</a>???????????</li>
  /frameworks/base/docs/html-intl/ru/training/monitoring-device-state/
index.jd 16 <li>???? ?????? ? <a href="{@docRoot}guide/components/intents-filters.html">??????????? ? ????????? ?????????</a></li>
manifest-receivers.jd 23 <li><a href="{@docRoot}guide/components/intents-filters.html">????????? ? ??????? ?????????</a>
  /frameworks/base/docs/html-intl/zh-cn/training/monitoring-device-state/
connectivity-monitoring.jd 27 <li><a href="{@docRoot}guide/components/intents-filters.html">intent ? intent ???</a>
index.jd 16 <li><a href="{@docRoot}guide/components/intents-filters.html">intent ? intent ???</a>?????</li>
  /packages/apps/Browser/src/com/android/browser/
BookmarkSearch.java 25 * to global search (through its searchable meta-data), and to handle the intents produced
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDiscoveryReceiver.java 31 * <p>Note that the discovery start/finish intents are also handled
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerClient.java 32 public void onRecognitionSuccess(final Intent[] intents);
RecognizerEngine.java 45 * a list of intents to the {@RecogizerClient}.
101 * <li>Build a list of Intents corresponding to the results. (implementation
232 protected static void addIntent(ArrayList<Intent> intents, Intent intent) {
233 for (Intent in : intents) {
242 intents.add(intent);
RecognizerLogger.java 163 * Write a list of Intents into the text log file.
164 * @param intents
166 public void logIntents(ArrayList<Intent> intents) {
167 logLine("Intents *********************");
169 for (Intent intent : intents) {
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebugReceiver.java 30 * Receives android.provider.Telephony.Intents.SECRET_CODE_ACTION and
  /frameworks/base/docs/html/training/basics/intents/
filters.jd 41 filters and adds the information to an internal catalog of intents supported by all installed apps.
51 <p>In order to properly define which intents your activity can handle, each intent filter you add
82 supported by the system, but most are rarely used. However, all implicit intents are defined with
122 android.content.Intent#ACTION_SENDTO} intents. In this case, you must define two separate
146 <p class="note"><strong>Note:</strong> In order to receive implicit intents, you must include the
149 android.app.Activity#startActivityForResult startActivityForResult()} treat all intents as if they
151 implicit intents will resolve to your activity.</p>
154 intents that perform social sharing behaviors, see the lesson about <a
183 // Handle intents with image data ...
185 // Handle intents with text ..
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 27 import android.provider.Telephony.Sms.Intents;
156 acknowledgeLastIncomingSms(true, Intents.RESULT_SMS_HANDLED, null);
166 return Intents.RESULT_SMS_GENERIC_ERROR;
175 return Intents.RESULT_SMS_HANDLED;
205 return Intents.RESULT_SMS_HANDLED;
225 return Intents.RESULT_SMS_HANDLED;
232 return Intents.RESULT_SMS_OUT_OF_MEMORY;
325 case Intents.RESULT_SMS_HANDLED:
328 case Intents.RESULT_SMS_OUT_OF_MEMORY:
330 case Intents.RESULT_SMS_GENERIC_ERROR
    [all...]
  /frameworks/base/docs/html/guide/appendix/
g-app-intents.jd 1 page.title=Intents List: Invoking Google Applications on Android Devices
7 For more information about intents, see the <a
8 href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a>.
12 <p>The table below lists the intents that your application can send, to invoke Google applications on Android devices in certain ways. For each action/uri pair, the table describes how the receiving Google application handles the intent. </p>
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactsIntentResolver.java 34 import android.provider.ContactsContract.Intents;
35 import android.provider.ContactsContract.Intents.Insert;
36 import android.provider.ContactsContract.Intents.UI;
167 // Since this is the filter activity it receives all intents
170 } else if (Intents.SEARCH_SUGGESTION_CLICKED.equals(action)) {

Completed in 424 milliseconds

1 23 4 5 6 7 8 91011>>