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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/docs/html/guide/appendix/
index.jd 7 <dt><a href="g-app-intents.html">Intents List: Invoking Google Applications on Android Devices</a></dt>
8 <dd>Intents you can send to invoke Google applications on Android devices.</dd>
  /frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
MainActivity.java 8 import com.android.ex.photo.Intents;
9 import com.android.ex.photo.Intents.PhotoViewIntentBuilder;
24 Intents.newPhotoViewActivityIntentBuilder(this);
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
PhoneTypeChoiceRecognizerEngine.java 43 * of results, builds a corresponding list of Intents, and
53 ArrayList<Intent> intents = new ArrayList<Intent>(); local
56 intents.size() < RESULT_LIMIT; result++) {
86 addIntent(intents, intent);
93 if (mLogger != null) mLogger.logIntents(intents);
98 if (intents.size() == 0) {
99 if (false) Log.d(TAG, " no intents");
100 recognizerClient.onRecognitionFailure("No Intents generated");
105 intents.toArray(new Intent[intents.size()]))
    [all...]
  /frameworks/base/docs/html/training/sharing/
index.jd 2 page.tags="intents","share"
16 <li>Experience with <a href="{@docRoot}guide/components/intents-filters.html">Intents and
38 applications with intents.</dd>
41 <dd>Learn how to set up your application to receive text and binary data from intents.</dd>
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.
47 the <a href="{@docRoot}training/sharing/send.html">Send Content to Other Apps Using Intents</a>
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/sdk/api_diff/5/changes/
android.provider.Contacts.Intents.Insert.html 10 android.provider.Contacts.Intents.Insert
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html" target="_top"><font size="+2"><code>Contacts.Intents.Insert</code></font></A>
86 <A NAME="android.provider.Contacts.Intents.Insert.ctor_changed()"></A>
87 <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#Contacts.Intents.Insert()" target="_top"><code>Contacts.Intents.Insert</code></A>() </nobr>
106 <A NAME="android.provider.Contacts.Intents.Insert.ACTION"></A>
107 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#ACTION" target="_top"><code>ACTION</code></font></A></nobr> </TD>
115 <A NAME="android.provider.Contacts.Intents.Insert.COMPANY"></A
    [all...]
android.provider.Contacts.Intents.html 10 android.provider.Contacts.Intents
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.html" target="_top"><font size="+2"><code>Contacts.Intents</code></font></A>
86 <A NAME="android.provider.Contacts.Intents.ctor_changed()"></A>
87 <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.html#Contacts.Intents()" target="_top"><code>Contacts.Intents</code></A>() </nobr>
106 <A NAME="android.provider.Contacts.Intents.ATTACH_IMAGE"></A>
107 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.html#ATTACH_IMAGE" target="_top"><code>ATTACH_IMAGE</code></font></A></nobr> </TD>
115 <A NAME="android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION"></A
    [all...]
android.provider.Contacts.Intents.UI.html 10 android.provider.Contacts.Intents.UI
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html" target="_top"><font size="+2"><code>Contacts.Intents.UI</code></font></A>
86 <A NAME="android.provider.Contacts.Intents.UI.ctor_changed()"></A>
87 <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#Contacts.Intents.UI()" target="_top"><code>Contacts.Intents.UI</code></A>() </nobr>
106 <A NAME="android.provider.Contacts.Intents.UI.FILTER_CONTACTS_ACTION"></A>
107 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#FILTER_CONTACTS_ACTION" target="_top"><code>FILTER_CONTACTS_ACTION</code></font></A></nobr> </TD>
115 <A NAME="android.provider.Contacts.Intents.UI.FILTER_TEXT_EXTRA_KEY"></A
    [all...]
  /frameworks/base/docs/html/training/basics/intents/
index.jd 2 page.tags="intents","activity"
24 href="http://android-developers.blogspot.com/2009/11/integrating-application-with-intents.html">
25 Integrating Application with Intents (blog post)</a></li>
26 <li><a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent
40 android.content.Intent} to identify and start the appropriate app component. Using intents even
49 make your app able to respond to intents from other apps.</p>
55 <dd>Shows how you can create implicit intents to launch other apps that can perform an
61 intent filters that declare the implicit intents your app accepts.</dd>
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IntentActivityFlags.java 41 // be done by launching an array of Intents, representing the new
44 Intent[] intents = new Intent[3]; local
49 intents[0] = Intent.makeRestartActivityTask(new ComponentName(this,
55 intents[1] = intent;
61 intents[2] = intent;
62 return intents;
IncomingMessage.java 70 // accomplish this, we can build an array of intents to insert the back
72 Intent[] intents = new Intent[4]; local
77 intents[0] = Intent.makeRestartActivityTask(new ComponentName(context,
81 intents[1] = new Intent(context, com.example.android.apis.ApiDemos.class);
82 intents[1].putExtra("com.example.android.apis.Path", "App");
84 intents[2] = new Intent(context, com.example.android.apis.ApiDemos.class);
85 intents[2].putExtra("com.example.android.apis.Path", "App/Notification");
89 intents[3] = new Intent(context, IncomingMessageView.class);
90 intents[3].putExtra(IncomingMessageView.KEY_FROM, from);
91 intents[3].putExtra(IncomingMessageView.KEY_MESSAGE, msg)
    [all...]
Intents.java 28 public class Intents extends Activity {
33 setContentView(R.layout.intents);
  /frameworks/support/v4/java/android/support/v4/app/
TaskStackBuilder.java 77 PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
82 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
84 Intent topIntent = new Intent(intents[intents.length - 1]);
91 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
93 intents[0] = new Intent(intents[0]).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
97 intents, flags);
102 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
104 intents[0] = new Intent(intents[0]).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
321 Intent[] intents = mIntents.toArray(new Intent[mIntents.size()]); local
366 Intent[] intents = mIntents.toArray(new Intent[mIntents.size()]); local
382 Intent[] intents = new Intent[mIntents.size()]; local
    [all...]
  /frameworks/support/v4/honeycomb/android/support/v4/app/
TaskStackBuilderHoneycomb.java 28 Intent[] intents, int flags) {
29 return PendingIntent.getActivities(context, requestCode, intents, flags);
  /frameworks/support/v4/honeycomb/android/support/v4/content/
ContextCompatHoneycomb.java 27 static void startActivities(Context context, Intent[] intents) {
28 context.startActivities(intents);
  /frameworks/support/v4/jellybean/android/support/v4/app/
TaskStackBuilderJellybean.java 27 Intent[] intents, int flags, Bundle options) {
28 return PendingIntent.getActivities(context, requestCode, intents, flags, options);
  /frameworks/support/v4/jellybean/android/support/v4/content/
ContextCompatJellybean.java 25 public static void startActivities(Context context, Intent[] intents, Bundle options) {
26 context.startActivities(intents, options);
  /development/samples/ApiDemos/res/layout/
intents.xml 17 <!-- Demonstrates launching various intents.
18 See corresponding Java code com.example.android.apis.app.Intents.java. -->
28 android:text="@string/intents"/>
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.provider.Contacts.Intents.Insert.html 10 android.provider.Contacts.Intents.Insert
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html" target="_top"><font size="+2"><code>Contacts.Intents.Insert</code></font></A>
87 <A NAME="android.provider.Contacts.Intents.Insert.PHONETIC_NAME"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#PHONETIC_NAME" target="_top"><code>PHONETIC_NAME</code></A></nobr>
94 <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#SECONDARY_EMAIL" target="_top"><code>SECONDARY_EMAIL</code></A></nobr>
101 <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL_TYPE"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#SECONDARY_EMAIL_TYPE" target="_top"><code>SECONDARY_EMAIL_TYPE</code></A></nobr>
108 <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_PHONE"></A
    [all...]
android.provider.Contacts.Intents.html 10 android.provider.Contacts.Intents
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.html" target="_top"><font size="+2"><code>Contacts.Intents</code></font></A>
87 <A NAME="android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.html#EXTRA_CREATE_DESCRIPTION" target="_top"><code>EXTRA_CREATE_DESCRIPTION</code></A></nobr>
94 <A NAME="android.provider.Contacts.Intents.EXTRA_FORCE_CREATE"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.html#EXTRA_FORCE_CREATE" target="_top"><code>EXTRA_FORCE_CREATE</code></A></nobr>
101 <A NAME="android.provider.Contacts.Intents.SHOW_OR_CREATE_CONTACT"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.html#SHOW_OR_CREATE_CONTACT" target="_top"><code>SHOW_OR_CREATE_CONTACT</code></A></nobr>
  /cts/tests/tests/security/src/android/security/cts/
BrowserTest.java 55 * Verify that no state is preserved across multiple intents sent
59 * In this test, we send two intents to the Android browser. The first
62 * across the two intents.
74 List<Intent> intents = getAllJavascriptIntents(); local
75 for (Intent i : intents) {
85 + "multiple intents. Vulnerable to CVE-2011-2357?",
93 * Verify that no state is preserved across multiple intents sent
97 * In this test, we send 20 intents to the Android browser. Each
112 List<Intent> intents = getAllJavascriptIntents(); local
113 for (Intent i : intents) {
143 List<Intent> intents = createAllIntents(Uri.parse("http:\/\/www.google.com")); local
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
ContextCompat.java 52 * @param intents Array of intents defining the activities that will be started. The element
56 public static boolean startActivities(Context context, Intent[] intents) {
57 return startActivities(context, intents, null);
81 * @param intents Array of intents defining the activities that will be started. The element
87 public static boolean startActivities(Context context, Intent[] intents,
91 ContextCompatJellybean.startActivities(context, intents, options);
94 ContextCompatHoneycomb.startActivities(context, intents);
  /frameworks/opt/telephony/tools/
tdi 2 # Telephony Debug Intents
47 *) echo 'Broadcast telephony debug intents'; echo 'usage: tdi [dce]'; echo ' dce=DC errors';;
  /frameworks/base/core/java/android/app/
TaskStackBuilder.java 186 * @return the number of intents added so far.
218 "No intents added to TaskStackBuilder; cannot startActivities");
269 "No intents added to TaskStackBuilder; cannot getPendingIntent");
283 "No intents added to TaskStackBuilder; cannot getPendingIntent");
291 * Return an array containing the intents added to this builder. The intent at the
295 * @return An array containing the intents added to this builder.
298 Intent[] intents = new Intent[mIntents.size()]; local
299 if (intents.length == 0) return intents;
301 intents[0] = new Intent(mIntents.get(0)).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
PhotoPagerAdapter.java 24 import com.android.ex.photo.Intents;
25 import com.android.ex.photo.Intents.PhotoViewIntentBuilder;
61 Intents.newPhotoViewFragmentIntentBuilder(mContext);

Completed in 1900 milliseconds

1 2 3 4 5 6 7 8 91011>>