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.java44 void navigateUpTo(Activity activity, Intent upIntent); argument
77 public void navigateUpTo(Activity activity, Intent upIntent) { argument
78 upIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
79 activity.startActivity(upIntent);
118 public void navigateUpTo(Activity activity, Intent upIntent) { argument
119 NavUtilsJB.navigateUpTo(activity, upIntent);
174 Intent upIntent = getParentActivityIntent(sourceActivity);
176 if (upIntent == null) {
184 navigateUpTo(sourceActivity, upIntent);
188 * Navigate from sourceActivity to the activity specified by upIntent, finishin
200 navigateUpTo(Activity sourceActivity, Intent upIntent) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivity.java382 Intent upIntent = getSupportParentActivityIntent();
384 if (upIntent != null) {
385 if (supportShouldUpRecreateTask(upIntent)) {
401 supportNavigateUpTo(upIntent);
439 * Navigate from sourceActivity to the activity specified by upIntent, finishing sourceActivity
440 * in the process. upIntent will have the flag {@link Intent#FLAG_ACTIVITY_CLEAR_TOP} set
448 * @param upIntent An intent representing the target destination for up navigation
450 public void supportNavigateUpTo(Intent upIntent) { argument
451 NavUtils.navigateUpTo(this, upIntent);
/frameworks/base/core/java/android/app/
H A DActivity.java2776 Intent upIntent = getParentActivityIntent();
2777 if (upIntent != null) {
2783 } else if (shouldUpRecreateTask(upIntent)) {
2799 navigateUpTo(upIntent);
5076 * Navigate from this activity to the activity specified by upIntent, finishing this activity
5077 * in the process. If the activity indicated by upIntent already exists in the task's history,
5091 * @param upIntent An intent representing the target destination for up navigation
5093 * @return true if up navigation successfully reached the activity indicated by upIntent and
5094 * upIntent was delivered to it. false if an instance of the indicated activity could
5097 public boolean navigateUpTo(Intent upIntent) { argument
5141 navigateUpToFromChild(Activity child, Intent upIntent) argument
[all...]

Completed in 116 milliseconds