Searched defs:upIntent (Results 1 - 4 of 4) sorted by path

/frameworks/base/core/java/android/app/
H A DActivity.java3384 Intent upIntent = getParentActivityIntent();
3385 if (upIntent != null) {
3391 } else if (shouldUpRecreateTask(upIntent)) {
3407 navigateUpTo(upIntent);
6425 * Navigate from this activity to the activity specified by upIntent, finishing this activity
6426 * in the process. If the activity indicated by upIntent already exists in the task's history,
6440 * @param upIntent An intent representing the target destination for up navigation
6442 * @return true if up navigation successfully reached the activity indicated by upIntent and
6443 * upIntent was delivered to it. false if an instance of the indicated activity could
6446 public boolean navigateUpTo(Intent upIntent) { argument
6490 navigateUpToFromChild(Activity child, Intent upIntent) argument
[all...]
/frameworks/support/core-utils/java/android/support/v4/app/
H A DNavUtils.java45 void navigateUpTo(Activity activity, Intent upIntent); argument
78 public void navigateUpTo(Activity activity, Intent upIntent) { argument
79 upIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
80 activity.startActivity(upIntent);
119 public void navigateUpTo(Activity activity, Intent upIntent) { argument
120 NavUtilsJB.navigateUpTo(activity, upIntent);
175 Intent upIntent = getParentActivityIntent(sourceActivity);
177 if (upIntent == null) {
185 navigateUpTo(sourceActivity, upIntent);
189 * Navigate from sourceActivity to the activity specified by upIntent, finishin
201 navigateUpTo(Activity sourceActivity, Intent upIntent) argument
[all...]
/frameworks/support/core-utils/jellybean/android/support/v4/app/
H A DNavUtilsJB.java32 public static void navigateUpTo(Activity activity, Intent upIntent) { argument
33 activity.navigateUpTo(upIntent);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatActivity.java398 Intent upIntent = getSupportParentActivityIntent();
400 if (upIntent != null) {
401 if (supportShouldUpRecreateTask(upIntent)) {
417 supportNavigateUpTo(upIntent);
457 * Navigate from sourceActivity to the activity specified by upIntent, finishing sourceActivity
458 * in the process. upIntent will have the flag {@link android.content.Intent#FLAG_ACTIVITY_CLEAR_TOP} set
466 * @param upIntent An intent representing the target destination for up navigation
468 public void supportNavigateUpTo(@NonNull Intent upIntent) { argument
469 NavUtils.navigateUpTo(this, upIntent);

Completed in 146 milliseconds