HomeSort by relevance Sort by last modified time
    Searched full:intents (Results 76 - 100 of 459) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
CaptureActivity.java 123 if (action.equals(Intents.Scan.ACTION)) {
124 if (intent.hasExtra(Intents.Scan.WIDTH) && intent.hasExtra(Intents.Scan.HEIGHT)) {
125 int width = intent.getIntExtra(Intents.Scan.WIDTH, 0);
126 int height = intent.getIntExtra(Intents.Scan.HEIGHT, 0);
132 characterSet = intent.getStringExtra(Intents.Scan.CHARACTER_SET);
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
pkg_android.provider.html 127 <A NAME="Contacts.Intents"></A>
128 <nobr><A HREF="android.provider.Contacts.Intents.html">Contacts.Intents</A></nobr>
134 <A NAME="Contacts.Intents.Insert"></A>
135 <nobr><A HREF="android.provider.Contacts.Intents.Insert.html">Contacts.Intents.Insert</A></nobr>
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
fields_index_all.html 112 <nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ACTION" class="hiddenlink" target="rightframe">ACTION</A>
154 <nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ATTACH_IMAGE" class="hiddenlink" target="rightframe">ATTACH_IMAGE</A>
275 <A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
CommandRecognizerEngine.java 51 * it will process the results, which will pass a list of intents to
947 ArrayList<Intent> intents = new ArrayList<Intent>(); local
    [all...]
  /frameworks/base/core/java/android/provider/
Contacts.java     [all...]
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetProvider.java 68 // When intents are compared, the extras are ignored, so we need to embed the extras
79 // cannot setup their own pending intents, instead, the collection as a whole can
  /frameworks/base/docs/html/training/basics/intents/
sending.jd 39 Your First App</a>, you must use intents to navigate between activities in your own app. You
51 <p>Implicit intents do not declare the class name of the component to start, but instead declare an
53 <em>edit</em>, <em>send</em>, or <em>get</em> something. Intents often also include data associated
73 <p>Here are a couple other intents and their action and {@link android.net.Uri} data
94 <p>Other kinds of implicit intents require "extra" data that provide different data types,
104 <p>Here are some more intents that add extra data to specify the desired action:</p>
144 <p>Although the Android platform guarantees that certain intents will resolve to one of the
176 <img src="{@docRoot}images/training/basics/intents-choice.png" alt="" />
  /frameworks/base/docs/html/training/monitoring-device-state/
index.jd 16 <li>Experience with <a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a></li>
  /packages/apps/Contacts/src/com/android/contacts/activities/
NonPhoneActivity.java 33 import android.provider.ContactsContract.Intents.Insert;
37 * Activity that intercepts DIAL and VIEW intents for phone numbers for devices that can not
ContactEditorAccountsChangedActivity.java 22 import android.provider.ContactsContract.Intents;
44 * {@link #Intents.Insert.ACCOUNT} that contains the {@link AccountWithDataSet} to create
188 intent.putExtra(Intents.Insert.ACCOUNT, account);
  /packages/apps/Mms/src/com/android/mms/transaction/
MmsSystemEventReceiver.java 64 if (action.equals(Mms.Intents.CONTENT_CHANGED_ACTION)) {
65 Uri changed = (Uri) intent.getParcelableExtra(Mms.Intents.DELETED_CONTENTS);
SmsReceiver.java 25 import android.provider.Telephony.Sms.Intents;
53 if (!privileged && intent.getAction().equals(Intents.SMS_RECEIVED_ACTION)) {
PushReceiver.java 20 import static android.provider.Telephony.Sms.Intents.WAP_PUSH_RECEIVED_ACTION;
52 * Receives Intent.WAP_PUSH_RECEIVED_ACTION intents and starts the
67 protected Void doInBackground(Intent... intents) {
68 Intent intent = intents[0];
  /cts/tests/tests/holo/src/android/holo/cts/
AllThemesIterator.java 24 * {@link Iterator} over all the possible permutations of theme and layout intents.
  /development/samples/StackWidget/
_index.html 19 The pattern for setting an intent template and fill-in intents in order to
  /frameworks/base/docs/html/intl/ja/training/monitoring-device-state/
docking-monitoring.jd 26 <li><a href="{@docRoot}guide/components/intents-filters.html">??????????? ????</a>
  /frameworks/base/docs/html/intl/ru/training/monitoring-device-state/
connectivity-monitoring.jd 27 <li><a href="{@docRoot}guide/components/intents-filters.html">????????? ? ??????? ?????????</a>
docking-monitoring.jd 26 <li><a href="{@docRoot}guide/components/intents-filters.html">????????? ? ??????? ?????????</a>
  /frameworks/base/docs/html/intl/zh-CN/training/monitoring-device-state/
docking-monitoring.jd 26 <li><a href="{@docRoot}guide/components/intents-filters.html">intent ? intent ???</a>
  /packages/apps/Contacts/src/com/android/contacts/
ContactsSearchManager.java 25 import android.provider.ContactsContract.Intents.UI;
  /packages/apps/Stk/src/com/android/stk/
StkCmdReceiver.java 27 * Receiver class to get STK intents, broadcasted by telephony layer.
  /frameworks/base/docs/html/guide/basics/
building-blocks.jd 24 "glue" that actually specifies which Intents your Activities receive.</dd>
42 <dt>{@link android.content.Intent Intents}</dt>
48 Intent, and runs it. Intents can also be used to broadcast interesting
  /frameworks/base/docs/html/guide/topics/connectivity/
wifip2p.jd 11 <li><a href="#creating-br">Creating a Broadcast Receiver for Wi-Fi Direct Intents</a></li>
52 <li>Intents that notify you of specific events detected by the Wi-Fi Direct framework,
170 <p>The Wi-Fi Direct APIs define intents that are broadcast when certain Wi-Fi Direct events happen,
172 to receive these intents in your application by <a href="#creating-br">creating a broadcast
173 receiver</a> that handles these intents:</p>
175 <p class="table-caption"><strong>Table 3.</strong> Wi-Fi Direct Intents</p>
206 <h2 id="creating-br">Creating a Broadcast Receiver for Wi-Fi Direct Intents</h2>
208 <p>A broadcast receiver allows you to receive intents broadcast by the Android system,
210 for creating a broadcast receiver to handle Wi-Fi Direct intents are as follows:</p>
220 <li>In the broadcast receiver, check for the intents that you are interested i
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsStorageMonitor.java 27 import android.provider.Telephony.Sms.Intents;
79 // Register for device storage intents. Use these to notify the RIL
140 Intent intent = new Intent(Intents.SIM_FULL_ACTION);
  /frameworks/base/test-runner/src/android/test/
IsolatedContext.java 65 /** Returns the list of intents that were broadcast since the last call to this method. */
67 List<Intent> intents = mBroadcastIntents; local
69 return intents;

Completed in 1335 milliseconds

1 2 34 5 6 7 8 91011>>