Example usage for android.app Activity navigateUpTo

List of usage examples for android.app Activity navigateUpTo

Introduction

In this page you can find the example usage for android.app Activity navigateUpTo.

Prototype

public boolean navigateUpTo(Intent upIntent) 

Source Link

Document

Navigate from this activity to the activity specified by upIntent, finishing this activity in the process.

Usage

From source file:Main.java

public static void navigateUpTo(Activity activity, Intent upIntent) {
    activity.navigateUpTo(upIntent);
}