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

/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNavUtilsJB.java32 public static void navigateUpTo(Activity activity, Intent upIntent) { argument
33 activity.navigateUpTo(upIntent);
/frameworks/support/v4/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 DActionBarActivity.java427 Intent upIntent = getSupportParentActivityIntent();
429 if (upIntent != null) {
430 if (supportShouldUpRecreateTask(upIntent)) {
446 supportNavigateUpTo(upIntent);
484 * Navigate from sourceActivity to the activity specified by upIntent, finishing sourceActivity
485 * in the process. upIntent will have the flag {@link Intent#FLAG_ACTIVITY_CLEAR_TOP} set
493 * @param upIntent An intent representing the target destination for up navigation
495 public void supportNavigateUpTo(Intent upIntent) { argument
496 NavUtils.navigateUpTo(this, upIntent);
/frameworks/base/core/java/android/app/
H A DActivity.java3065 Intent upIntent = getParentActivityIntent();
3066 if (upIntent != null) {
3072 } else if (shouldUpRecreateTask(upIntent)) {
3088 navigateUpTo(upIntent);
5754 * Navigate from this activity to the activity specified by upIntent, finishing this activity
5755 * in the process. If the activity indicated by upIntent already exists in the task's history,
5769 * @param upIntent An intent representing the target destination for up navigation
5771 * @return true if up navigation successfully reached the activity indicated by upIntent and
5772 * upIntent was delivered to it. false if an instance of the indicated activity could
5775 public boolean navigateUpTo(Intent upIntent) { argument
5819 navigateUpToFromChild(Activity child, Intent upIntent) argument
[all...]

Completed in 777 milliseconds