Home | History | Annotate | Download | only in app

Lines Matching refs:IntentSender

29 import android.content.IntentSender;
3446 * Same as calling {@link #startIntentSenderForResult(IntentSender, int,
3449 * @param intent The IntentSender to launch.
3453 * intent parameter to {@link IntentSender#sendIntent}.
3454 * @param flagsMask Intent flags in the original IntentSender that you
3460 public void startIntentSenderForResult(IntentSender intent, int requestCode,
3462 throws IntentSender.SendIntentException {
3469 * to use a IntentSender to describe the activity to be started. If
3470 IntentSender is for an activity, that activity will be started
3474 * {@link IntentSender#sendIntent IntentSender.sendIntent} on it.
3476 * @param intent The IntentSender to launch.
3480 * intent parameter to {@link IntentSender#sendIntent}.
3481 * @param flagsMask Intent flags in the original IntentSender that you
3489 * have also been supplied by the IntentSender, options given here will
3490 * override any that conflict with those given by the IntentSender.
3492 public void startIntentSenderForResult(IntentSender intent, int requestCode,
3494 Bundle options) throws IntentSender.SendIntentException {
3509 private void startIntentSenderForResultInner(IntentSender intent, int requestCode,
3512 throws IntentSender.SendIntentException {
3525 throw new IntentSender.SendIntentException();
3636 * Same as calling {@link #startIntentSender(IntentSender, Intent, int, int, int, Bundle)}
3639 * @param intent The IntentSender to launch.
3641 * intent parameter to {@link IntentSender#sendIntent}.
3642 * @param flagsMask Intent flags in the original IntentSender that you
3648 public void startIntentSender(IntentSender intent,
3650 throws IntentSender.SendIntentException {
3656 * Like {@link #startActivity(Intent, Bundle)}, but taking a IntentSender
3658 * {@link #startIntentSenderForResult(IntentSender, int, Intent, int, int, int, Bundle)}
3661 * @param intent The IntentSender to launch.
3663 * intent parameter to {@link IntentSender#sendIntent}.
3664 * @param flagsMask Intent flags in the original IntentSender that you
3672 * have also been supplied by the IntentSender, options given here will
3673 * override any that conflict with those given by the IntentSender.
3675 public void startIntentSender(IntentSender intent,
3677 Bundle options) throws IntentSender.SendIntentException {
3929 * Same as calling {@link #startIntentSenderFromChild(Activity, IntentSender,
3932 public void startIntentSenderFromChild(Activity child, IntentSender intent,
3935 throws IntentSender.SendIntentException {
3942 * taking a IntentSender; see
3943 * {@link #startIntentSenderForResult(IntentSender, int, Intent, int, int, int)}
3946 public void startIntentSenderFromChild(Activity child, IntentSender intent,
3949 throws IntentSender.SendIntentException {