Example usage for android.app Activity getParentActivityIntent

List of usage examples for android.app Activity getParentActivityIntent

Introduction

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

Prototype

@Nullable
public Intent getParentActivityIntent() 

Source Link

Document

Obtain an Intent that will launch an explicit target activity specified by this activity's logical parent.

Usage

From source file:Main.java

public static Intent getParentActivityIntent(Activity activity) {
    return activity.getParentActivityIntent();
}