Home | History | Annotate | Download | only in app

Lines Matching refs:upIntent

3061         Intent upIntent = getParentActivityIntent();
3062 if (upIntent != null) {
3068 } else if (shouldUpRecreateTask(upIntent)) {
3084 navigateUpTo(upIntent);
5698 * Navigate from this activity to the activity specified by upIntent, finishing this activity
5699 * in the process. If the activity indicated by upIntent already exists in the task's history,
5713 * @param upIntent An intent representing the target destination for up navigation
5715 * @return true if up navigation successfully reached the activity indicated by upIntent and
5716 * upIntent was delivered to it. false if an instance of the indicated activity could
5719 public boolean navigateUpTo(Intent upIntent) {
5721 ComponentName destInfo = upIntent.getComponent();
5723 destInfo = upIntent.resolveActivity(getPackageManager());
5727 upIntent = new Intent(upIntent);
5728 upIntent.setComponent(destInfo);
5740 upIntent.prepareToLeaveProcess();
5741 return ActivityManagerNative.getDefault().navigateUpTo(mToken, upIntent,
5747 return mParent.navigateUpToFromChild(this, upIntent);
5754 * navigateUpTo(upIntent) on this activity (the parent).
5757 * @param upIntent An intent representing the target destination for up navigation
5759 * @return true if up navigation successfully reached the activity indicated by upIntent and
5760 * upIntent was delivered to it. false if an instance of the indicated activity could
5763 public boolean navigateUpToFromChild(Activity child, Intent upIntent) {
5764 return navigateUpTo(upIntent);