Lines Matching defs:options

2117      * Activity's options menu and the navigation button will be wired through the standard
2327 * ({@link #DEFAULT_KEYS_DIALER}), execute a shortcut in your options
2972 * Declare that the options menu has changed, so should be recreated.
2984 * Initialize the contents of the Activity's standard options menu. You
2987 * <p>This is only called once, the first time the options menu is
3003 * @param menu The options menu in which you place your items.
3019 * Prepare the Screen's standard options menu to be displayed. This is
3028 * @param menu The options menu as last shown or first initialized by
3044 * This hook is called whenever an item in your options menu is selected.
3173 * This hook is called whenever the options menu is being closed (either by the user canceling
3176 * @param menu The options menu as last shown or first initialized by
3186 * Programmatically opens the options menu. If the options menu is already
3197 * Progammatically closes the options menu. If the options menu is already
3879 * with no options.
3919 * @param options Additional options for how the Activity should be started.
3927 public void startActivityForResult(Intent intent, int requestCode, @Nullable Bundle options) {
3932 intent, requestCode, options);
3949 cancelInputsAndStartExitTransition(options);
3952 if (options != null) {
3953 mParent.startActivityFromChild(this, intent, requestCode, options);
3965 * @param options The ActivityOptions bundle used to start an Activity.
3967 private void cancelInputsAndStartExitTransition(Bundle options) {
3972 if (options != null && !isTopOfTask()) {
3973 mActivityTransitionState.startExitOutTransition(this, options);
3988 @Nullable Bundle options, UserHandle user) {
3994 options, user);
4010 cancelInputsAndStartExitTransition(options);
4023 public void startActivityAsUser(Intent intent, Bundle options, UserHandle user) {
4030 intent, -1, options, user);
4036 cancelInputsAndStartExitTransition(options);
4046 * @param options ActivityOptions or null.
4054 public void startActivityAsCaller(Intent intent, @Nullable Bundle options,
4062 intent, -1, options, ignoreTargetSecurity, userId);
4068 cancelInputsAndStartExitTransition(options);
4073 * Intent, int, int, int, Bundle)} with no options.
4112 * @param options Additional options for how the Activity should be started.
4114 * Context.startActivity(Intent, Bundle)} for more details. If options
4115 * have also been supplied by the IntentSender, options given here will
4120 Bundle options) throws IntentSender.SendIntentException {
4123 flagsMask, flagsValues, this, options);
4124 } else if (options != null) {
4126 fillInIntent, flagsMask, flagsValues, extraFlags, options);
4137 Bundle options)
4149 requestCode, flagsMask, flagsValues, options);
4169 * Same as {@link #startActivity(Intent, Bundle)} with no options
4197 * @param options Additional options for how the Activity should be started.
4207 public void startActivity(Intent intent, @Nullable Bundle options) {
4208 if (options != null) {
4209 startActivityForResult(intent, -1, options);
4218 * Same as {@link #startActivities(Intent[], Bundle)} with no options
4246 * @param options Additional options for how the Activity should be started.
4256 public void startActivities(Intent[] intents, @Nullable Bundle options) {
4258 mToken, this, intents, options);
4263 * with no options.
4295 * @param options Additional options for how the Activity should be started.
4297 * Context.startActivity(Intent, Bundle)} for more details. If options
4298 * have also been supplied by the IntentSender, options given here will
4303 Bundle options) throws IntentSender.SendIntentException {
4304 if (options != null) {
4306 flagsValues, extraFlags, options);
4317 * with no options.
4354 * @param options Additional options for how the Activity should be started.
4365 @Nullable Bundle options) {
4379 null, options);
4405 * no options.
4431 * @param options Additional options for how the Activity should be started.
4440 public boolean startNextMatchingActivity(@NonNull Intent intent, @Nullable Bundle options) {
4446 .startNextMatchingActivity(mToken, intent, options);
4459 * with no options.
4485 * @param options Additional options for how the Activity should be started.
4495 int requestCode, @Nullable Bundle options) {
4499 intent, requestCode, options);
4505 cancelInputsAndStartExitTransition(options);
4510 * with no options.
4537 * @param options Additional options for how the Activity should be started.
4547 int requestCode, @Nullable Bundle options) {
4548 startActivityForResult(fragment.mWho, intent, requestCode, options);
4556 String who, Intent intent, int requestCode, @Nullable Bundle options) {
4564 intent, requestCode, options);
4570 cancelInputsAndStartExitTransition(options);
4583 * int, Intent, int, int, int, Bundle)} with no options.
4601 int extraFlags, @Nullable Bundle options)
4604 flagsMask, flagsValues, child, options);
5682 * @param options activity options delivered to the activity below this one. The options
5694 ActivityOptions options) {
5699 ActivityManagerNative.getDefault().convertToTranslucent(mToken, options);
5726 public void onNewActivityOptions(ActivityOptions options) {
5727 mActivityTransitionState.setEnterActivityOptions(this, options);
6637 Bundle options) {
6638 Activity.this.startActivityFromFragment(fragment, intent, requestCode, options);