/development/samples/ApiDemos/res/layout/ |
intents.xml | 17 <!-- Demonstrates launching various intents. 18 See corresponding Java code com.example.android.apis.app.Intents.java. --> 29 android:text="@string/intents"/>
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
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);
|
/development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/ |
Utils.java | 24 import android.provider.Telephony.Sms.Intents; 63 Intent intent = new Intent(Intents.ACTION_CHANGE_DEFAULT); 64 intent.putExtra(Intents.EXTRA_PACKAGE_NAME, context.getPackageName());
|
/development/samples/browseable/BasicManagedProfile/ |
_index.jd | 9 enable or disable other apps and how to set restrictions to them. Intents can be
|
/frameworks/base/docs/html/reference/android/support/test/espresso/intent/ |
package-summary.html | 168 A sneaky singleton object used to respond to intents with fake responses. 201 An interface for different modes of verifying intents. 232 <td class="jd-linkcol"><a href="/reference/android/support/test/espresso/intent/Intents.html">Intents</a></td> 234 Intents enables validation and stubbing of intents sent out by the application under test. 245 Supports method chaining after @Intents#intending method call. 310 <li class="api apilevel-"><a href="/reference/android/support/test/espresso/intent/Intents.html">Intents</a></li>
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CdmaInboundSmsHandler.java | 24 import android.provider.Telephony.Sms.Intents; 121 return Intents.RESULT_SMS_HANDLED; 128 return Intents.RESULT_SMS_HANDLED; 140 return Intents.RESULT_SMS_HANDLED; 146 return Intents.RESULT_SMS_HANDLED; 152 return Intents.RESULT_SMS_HANDLED; 160 return Intents.RESULT_SMS_UNSUPPORTED; 168 return Intents.RESULT_SMS_OUT_OF_MEMORY; 217 case Intents.RESULT_SMS_HANDLED: 220 case Intents.RESULT_SMS_OUT_OF_MEMORY [all...] |
/frameworks/base/docs/html-intl/intl/zh-cn/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">????????</a>
|
/frameworks/base/docs/html-intl/intl/zh-tw/training/basics/intents/ |
index.jd | 24 <li><a href="http://android-developers.blogspot.com/2009/11/integrating-application-with-intents.html">?????????? (?????)</a> 26 <li><a href="{@docRoot}guide/components/intents-filters.html">????????</a>
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GsmInboundSmsHandler.java | 22 import android.provider.Telephony.Sms.Intents; 90 * @return a result code from {@link android.provider.Telephony.Sms.Intents}, 101 return Intents.RESULT_SMS_HANDLED; 121 return Intents.RESULT_SMS_HANDLED; 128 return Intents.RESULT_SMS_OUT_OF_MEMORY; 191 case Intents.RESULT_SMS_HANDLED: 194 case Intents.RESULT_SMS_OUT_OF_MEMORY: 196 case Intents.RESULT_SMS_GENERIC_ERROR:
|
/frameworks/opt/telephony/tools/ |
tdi | 2 # Telephony Debug Intents 47 *) echo 'Broadcast telephony debug intents'; echo 'usage: tdi [dce]'; echo ' dce=DC errors';;
|
/packages/apps/UnifiedEmail/src/com/android/mail/photo/ |
MailPhotoViewActivity.java | 23 import com.android.ex.photo.Intents; 54 final Intents.PhotoViewIntentBuilder builder = 55 Intents.newPhotoViewIntentBuilder(context, 80 final Intents.PhotoViewIntentBuilder builder = Intents.newPhotoViewIntentBuilder(
|
/frameworks/base/docs/html/sdk/api_diff/24/changes/ |
android.provider.Telephony.Sms.Intents.html | 10 android.provider.Telephony.Sms.Intents 74 Class android.provider.<A HREF="../../../../reference/android/provider/Telephony.Sms.Intents.html" target="_top"><font size="+2"><code>Telephony.Sms.Intents</code></font></A> 87 <A NAME="android.provider.Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION"></A> 102 <A NAME="android.provider.Telephony.Sms.Intents.ACTION_DEFAULT_SMS_PACKAGE_CHANGED"></A> 103 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Telephony.Sms.Intents.html#ACTION_DEFAULT_SMS_PACKAGE_CHANGED" target="_top"><code>ACTION_DEFAULT_SMS_PACKAGE_CHANGED</code></A></nobr> 109 <A NAME="android.provider.Telephony.Sms.Intents.ACTION_EXTERNAL_PROVIDER_CHANGE"></A> 110 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Telephony.Sms.Intents.html#ACTION_EXTERNAL_PROVIDER_CHANGE" target="_top"><code>ACTION_EXTERNAL_PROVIDER_CHANGE</code></A></nobr> 116 <A NAME="android.provider.Telephony.Sms.Intents.EXTRA_IS_DEFAULT_SMS_APP"></A> 117 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Telephony.Sms.Intents.html#EXTRA_IS_DEFAULT_SMS_APP" target="_top"><code>EXTRA_IS_DEFAULT_SMS_APP</code></A></nobr [all...] |
/frameworks/base/core/java/android/app/ |
TaskStackBuilder.java | 187 * @return the number of intents added so far. 219 "No intents added to TaskStackBuilder; cannot startActivities"); 271 "No intents added to TaskStackBuilder; cannot getPendingIntent"); 285 "No intents added to TaskStackBuilder; cannot getPendingIntent"); 293 * Return an array containing the intents added to this builder. The intent at the 297 * @return An array containing the intents added to this builder. 301 Intent[] intents = new Intent[mIntents.size()]; local 302 if (intents.length == 0) return intents; 304 intents[0] = new Intent(mIntents.get(0)).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK [all...] |
PendingIntent.java | 66 * <p>Because of this behavior, it is important to know when two Intents 69 * with Intents that only vary in their "extra" contents, expecting to get 89 * Intents you will use, then you can alternatively use the flags 148 * {@link #getService}. <p>This can be used if you are creating intents where only the 245 * Listener for observing when pending intents are written to a parcel. 264 * Registers an listener for pending intents being written to a parcel. 380 * array of Intents to be supplied. The last Intent in the array is 383 * the resulting PendingIntent, all of the Intents are started in the same 400 * This is because it is the most specific of the supplied intents, and the 401 * UI the user actually sees when the intents are started [all...] |
/frameworks/base/docs/html/work/ |
managed-profiles.jd | 11 <li><a href="#prevent_failed_intents">Prevent Failed Intents</a></li> 51 <li>By default, most intents do not cross from one profile to the other. If an 58 some common intents on the managed profile.</li> 62 settings), so it is not safe to attach file URIs to intents.</li> 66 <h2 id="prevent_failed_intents">Prevent Failed Intents</h2> 68 <p>On a device with a managed profile, there are restrictions on whether intents 75 <p>The profile administrator can choose which intents are 78 to know in advance <em>which</em> intents are allowed to cross this boundary. The 91 resolving intents, see <a 92 href="{@docRoot}guide/components/intents-common.html">Common Intents</a>.)</p [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
IntentDrivenTestActivity.java | 19 * text view containing instructions and one or more buttons that trigger intents. 22 * The intents can either be generated statically and passed as an extra to the intent that started 82 final Intent[] intents = buttonInfo.getIntents(); local 83 if (intents != null) { 84 for (Parcelable intent : intents) { 158 public ButtonInfo(int buttonText, Intent... intents) { 160 mIntents = intents;
|
/development/apps/Fallback/ |
AndroidManifest.xml | 12 <!-- SMS intents --> 31 <!-- Mail intents --> 40 <!-- Wallpaper intents --> 46 <!-- Camera intents -->
|
/development/apps/Fallback/src/com/android/fallback/ |
Fallback.java | 23 * A fall back activity that registers itself for common intents which
|
/development/samples/ApiDemos/ |
README.txt | 6 - Intents
|
/frameworks/base/docs/html/training/contacts-provider/ |
modify-data.jd | 1 page.title=Modifying Contacts Using Intents 27 <a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent Filters</a> 87 {@link android.provider.ContactsContract.Intents.Insert#ACTION Intents.Insert.ACTION}. 94 Intent intent = new Intent(Intents.Insert.ACTION); 101 {@link android.provider.ContactsContract.Intents.Insert Intents.Insert}. The contacts app 117 intent.putExtra(Intents.Insert.EMAIL, mEmailAddress.getText()) 122 .putExtra(Intents.Insert.EMAIL_TYPE, CommonDataKinds.Email.TYPE_WORK [all...] |
/frameworks/base/docs/html-intl/intl/ja/training/monitoring-device-state/ |
manifest-receivers.jd | 23 <li><a href="{@docRoot}guide/components/intents-filters.html">??????????? ????</a>
|
/frameworks/base/docs/html-intl/intl/zh-cn/training/monitoring-device-state/ |
manifest-receivers.jd | 23 <li><a href="{@docRoot}guide/components/intents-filters.html">intent ? intent ???</a>
|
/packages/apps/Dialer/src/com/android/dialer/util/ |
IntentUtil.java | 30 * Utilities for creation of intents in Dialer, such as {@link Intent#ACTION_CALL}. 149 intent.putExtra(ContactsContract.Intents.Insert.PHONE, phoneNumber); 152 intent.putExtra(ContactsContract.Intents.Insert.NAME, name); 155 intent.putExtra(ContactsContract.Intents.Insert.PHONE_TYPE, phoneNumberType);
|
/packages/apps/TV/src/com/android/tv/receiver/ |
PackageIntentsReceiver.java | 26 * A class for handling the broadcast intents from PackageManager.
|