Searched refs:upIntent (Results 1 - 6 of 6) sorted by relevance

/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/frameworks/support/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
H A DContentViewActivity.java54 Intent upIntent = NavUtils.getParentActivityIntent(this);
55 if (NavUtils.shouldUpRecreateTask(this, upIntent)) {
61 NavUtils.navigateUpTo(this, upIntent);
/frameworks/support/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
H A DContentViewActivity.java54 Intent upIntent = NavUtils.getParentActivityIntent(this);
55 if (NavUtils.shouldUpRecreateTask(this, upIntent)) {
61 NavUtils.navigateUpTo(this, upIntent);
/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/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);
/frameworks/base/core/java/android/app/
H A DActivity.java3387 Intent upIntent = getParentActivityIntent();
3388 if (upIntent != null) {
3394 } else if (shouldUpRecreateTask(upIntent)) {
3410 navigateUpTo(upIntent);
6428 * Navigate from this activity to the activity specified by upIntent, finishing this activity
6429 * in the process. If the activity indicated by upIntent already exists in the task's history,
6443 * @param upIntent An intent representing the target destination for up navigation
6445 * @return true if up navigation successfully reached the activity indicated by upIntent and
6446 * upIntent was delivered to it. false if an instance of the indicated activity could
6449 public boolean navigateUpTo(Intent upIntent) { argument
6493 navigateUpToFromChild(Activity child, Intent upIntent) argument
[all...]

Completed in 154 milliseconds