Searched refs: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 DAppCompatActivity.java337 Intent upIntent = getSupportParentActivityIntent();
339 if (upIntent != null) {
340 if (supportShouldUpRecreateTask(upIntent)) {
356 supportNavigateUpTo(upIntent);
395 * Navigate from sourceActivity to the activity specified by upIntent, finishing sourceActivity
396 * in the process. upIntent will have the flag {@link android.content.Intent#FLAG_ACTIVITY_CLEAR_TOP} set
404 * @param upIntent An intent representing the target destination for up navigation
406 public void supportNavigateUpTo(Intent upIntent) { argument
407 NavUtils.navigateUpTo(this, upIntent);
/frameworks/base/core/java/android/app/
H A DActivity.java3088 Intent upIntent = getParentActivityIntent();
3089 if (upIntent != null) {
3095 } else if (shouldUpRecreateTask(upIntent)) {
3111 navigateUpTo(upIntent);
6001 * Navigate from this activity to the activity specified by upIntent, finishing this activity
6002 * in the process. If the activity indicated by upIntent already exists in the task's history,
6016 * @param upIntent An intent representing the target destination for up navigation
6018 * @return true if up navigation successfully reached the activity indicated by upIntent and
6019 * upIntent was delivered to it. false if an instance of the indicated activity could
6022 public boolean navigateUpTo(Intent upIntent) { argument
6066 navigateUpToFromChild(Activity child, Intent upIntent) argument
[all...]

Completed in 564 milliseconds