Searched refs:upIntent (Results 1 - 3 of 3) 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.java42 void navigateUpTo(Activity activity, Intent upIntent); argument
62 public void navigateUpTo(Activity activity, Intent upIntent) { argument
63 upIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
64 activity.startActivity(upIntent);
99 public void navigateUpTo(Activity activity, Intent upIntent) { argument
100 NavUtilsJB.navigateUpTo(activity, upIntent);
155 Intent upIntent = getParentActivityIntent(sourceActivity);
157 if (upIntent == null) {
165 navigateUpTo(sourceActivity, upIntent);
169 * Navigate from sourceActivity to the activity specified by upIntent, finishin
181 navigateUpTo(Activity sourceActivity, Intent upIntent) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivity.java2709 Intent upIntent = getParentActivityIntent();
2710 if (upIntent != null) {
2711 if (shouldUpRecreateTask(upIntent)) {
2727 navigateUpTo(upIntent);
4858 * Navigate from this activity to the activity specified by upIntent, finishing this activity
4859 * in the process. If the activity indicated by upIntent already exists in the task's history,
4873 * @param upIntent An intent representing the target destination for up navigation
4875 * @return true if up navigation successfully reached the activity indicated by upIntent and
4876 * upIntent was delivered to it. false if an instance of the indicated activity could
4879 public boolean navigateUpTo(Intent upIntent) { argument
4922 navigateUpToFromChild(Activity child, Intent upIntent) argument
[all...]

Completed in 104 milliseconds