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

1 23 4 5 6 7 8 91011>>

  /packages/services/Telecomm/src/com/android/server/telecom/components/
PrimaryCallReceiver.java 12 * as a trampoline that captures call intents for individual users and forwards it to
  /prebuilts/maven_repo/android/com/android/support/test/espresso/espresso-intents/2.2/
espresso-intents-2.2.pom 6 <artifactId>espresso-intents</artifactId>
  /prebuilts/maven_repo/android/com/android/support/test/espresso/espresso-intents/2.2.1/
espresso-intents-2.2.1.pom 6 <artifactId>espresso-intents</artifactId>
  /prebuilts/maven_repo/android/com/android/support/test/espresso/espresso-intents/2.2.2/
espresso-intents-2.2.2.pom 6 <artifactId>espresso-intents</artifactId>
  /development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java 152 // extras (and other Intents in the array) to be the ones passed in here.
163 // accomplish this, we can build an array of intents to insert the back
165 Intent[] intents = new Intent[4]; local
170 intents[0] = Intent.makeRestartActivityTask(new ComponentName(this,
174 intents[1] = new Intent(this, com.example.android.apis.ApiDemos.class);
175 intents[1].putExtra("com.example.android.apis.Path", "App");
177 intents[2] = new Intent(this, com.example.android.apis.ApiDemos.class);
178 intents[2].putExtra("com.example.android.apis.Path", "App/Notification");
181 intents[3] = new Intent(this, StatusBarNotifications.class);
186 // extras (and other Intents in the array) to be the ones passed in here
    [all...]
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
Intents.java 25 public final class Intents {
26 private Intents() {
  /frameworks/base/docs/html/training/sharing/
receive.jd 26 <li><a href="{@docRoot}guide/components/intents-filters.html">Intents and
45 <p>Intent filters inform the system what intents an application component is willing to accept.
48 lesson, you create intent filters in order to be able to receive intents with this action. You
51 href="{@docRoot}guide/components/intents-filters.html#ifs">&lt;intent-filter&gt;</a></code>
76 please read <a href="{@docRoot}guide/components/intents-filters.html#ifs">Intents and Intent
114 // Handle other intents, such as being started from the home screen
  /frameworks/base/docs/html-intl/intl/ru/training/basics/intents/
index.jd 24 <li><a href="http://android-developers.blogspot.com/2009/11/integrating-application-with-intents.html">
26 <li><a href="{@docRoot}guide/components/intents-filters.html">??????? Intent ? ???????
  /frameworks/base/docs/html/reference/android/support/test/espresso/intent/
VerificationMode.html 215 <p>An interface for different modes of verifying intents.
276 <p>Verifies the recorded intents that match the provided <code><a href="/reference/org/hamcrest/Matcher.html">Matcher</a></code>.
340 <p>Verifies the recorded intents that match the provided <code><a href="/reference/org/hamcrest/Matcher.html">Matcher</a></code>. No intents should be
392 <li class="api apilevel-"><a href="/reference/android/support/test/espresso/intent/Intents.html">Intents</a></li>
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/
DialogSmsDisplayTests.java 22 import android.provider.Telephony.Sms.Intents;
125 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
132 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
139 Intent intent = new Intent(Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
146 Intent intent = new Intent(Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
153 Intent intent = new Intent(Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
  /frameworks/base/docs/html/sdk/api_diff/23/changes/
android.provider.ContactsContract.Intents.Insert.html 10 android.provider.ContactsContract.Intents.Insert
74 Class android.provider.<A HREF="../../../../reference/android/provider/ContactsContract.Intents.Insert.html" target="_top"><font size="+2"><code>ContactsContract.Intents.Insert</code></font></A>
87 <A NAME="android.provider.ContactsContract.Intents.Insert.EXTRA_ACCOUNT"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Intents.Insert.html#EXTRA_ACCOUNT" target="_top"><code>EXTRA_ACCOUNT</code></A></nobr>
94 <A NAME="android.provider.ContactsContract.Intents.Insert.EXTRA_DATA_SET"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/ContactsContract.Intents.Insert.html#EXTRA_DATA_SET" target="_top"><code>EXTRA_DATA_SET</code></A></nobr>
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/tests/
SendCdmaCmasMessages.java 63 Intent intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
77 Intent intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
91 Intent intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
105 Intent intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
119 Intent intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorIntents.java 37 * Creates Intents to edit contacts.
93 intent.putParcelableArrayListExtra(ContactsContract.Intents.Insert.DATA, contentValues);
169 ContactsContract.Intents.Insert.DATA, contentValues);
174 intent.putExtra(ContactsContract.Intents.Insert.NAME, displayName);
177 intent.putExtra(ContactsContract.Intents.Insert.PHONETIC_NAME, phoneticName);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
ImplicitIntentsUtil.java 33 * Utility for forcing intents to be started inside the current app. This is useful for avoiding
37 * Methods are designed to replace the use of startActivity() for implicit intents. This class isn't
38 * necessary for explicit intents. No attempt is made to replace startActivityForResult(), since
39 * startActivityForResult() is always used with explicit intents in this project.
41 * Why not just always use explicit intents? The Contacts/Dialer app implements standard intent
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/wear/
WearPackageUtil.java 139 if (pkg.activities.get(i).intents != null) {
140 ArrayList<PackageParser.ActivityIntentInfo> intents = local
141 pkg.activities.get(i).intents;
142 final int intentsCount = intents.size();
144 final PackageParser.ActivityIntentInfo intentInfo = intents.get(j);
  /prebuilts/misc/common/android-support-test/
Android.mk 109 # for espresso-intents
112 LOCAL_MODULE := espresso-intents
114 LOCAL_SRC_FILES := espresso/espresso-intents-2.2.2-release.jar
122 LOCAL_MODULE := espresso-intents-nodep
124 LOCAL_SRC_FILES := espresso/espresso-intents-2.2.2-release-no-dep.jar
  /cts/tests/tests/telecom/src/android/telecom/cts/
TelecomAvailabilityTest.java 70 * Test that the Telecom APK is registered to handle CALL intents, and that the Telephony APK
97 assertTrue("Telecom APK must be registered to handle CALL intents", telecomMatches);
98 assertFalse("Telephony APK must NOT be registered to handle CALL intents",
  /frameworks/base/docs/html/training/contacts-provider/
index.jd 48 calling {@link android.content.ContentResolver} methods or by sending intents to a contacts app.
52 contact, and modifying contacts using intents. The basic techniques described
81 <b><a href="modify-data.html">Modifying Contacts Using Intents</a></b>
  /frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
PhotoPagerAdapter.java 26 import com.android.ex.photo.Intents;
27 import com.android.ex.photo.Intents.PhotoViewIntentBuilder;
62 Intents.newPhotoViewFragmentIntentBuilder(mContext, getPhotoViewFragmentClass());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CellBroadcastHandler.java 46 * @param context the context to use for dispatching Intents
84 intent = new Intent(Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
89 intent = new Intent(Telephony.Sms.Intents.SMS_CB_RECEIVED_ACTION);
InboundSmsHandler.java 57 import android.provider.Telephony.Sms.Intents;
177 /** Wake lock to ensure device stays awake while dispatching the SMS intents. */
517 result = Intents.RESULT_SMS_GENERIC_ERROR;
523 boolean handled = (result == Intents.RESULT_SMS_HANDLED);
539 result = Intents.RESULT_SMS_GENERIC_ERROR;
545 result = Intents.RESULT_SMS_GENERIC_ERROR;
560 * @return a result code from {@link android.provider.Telephony.Sms.Intents},
567 return Intents.RESULT_SMS_GENERIC_ERROR;
574 return Intents.RESULT_SMS_HANDLED;
587 return Intents.RESULT_SMS_GENERIC_ERROR
    [all...]
  /frameworks/base/docs/html/guide/topics/manifest/
intent-filter-element.jd 28 <dd itemprop="description">Specifies the types of intents that an activity, service, or broadcast
32 intents of the advertised type, while filtering out those that are not
44 <a href="{@docRoot}guide/components/intents-filters.html">Intents
46 <a href="{@docRoot}guide/topics/manifest/manifest-intro.html#ifs">Intents Filters</a>
98 to handling intents of the type described by the filter. This attribute has
action-element.jd 19 <a href="{@docRoot}guide/components/intents-filters.html">Intents and
  /packages/apps/Contacts/src/com/android/contacts/activities/
ShowOrCreateActivity.java 30 import android.provider.ContactsContract.Intents;
48 * {@link Intents#SHOW_OR_CREATE_CONTACT}.
121 mCreateDescrip = intent.getStringExtra(Intents.EXTRA_CREATE_DESCRIPTION);
127 mCreateForce = intent.getBooleanExtra(Intents.EXTRA_FORCE_CREATE, false);
131 mCreateExtras.putString(Intents.Insert.EMAIL, ssp);
137 mCreateExtras.putString(Intents.Insert.PHONE, ssp);
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicIntentReceiver.java 27 * Receives broadcasted intents. In particular, we are interested in the
28 * android.media.AUDIO_BECOMING_NOISY and android.intent.action.MEDIA_BUTTON intents, which is

Completed in 1280 milliseconds

1 23 4 5 6 7 8 91011>>