Example usage for android.app FragmentState CREATOR

List of usage examples for android.app FragmentState CREATOR

Introduction

In this page you can find the example usage for android.app FragmentState CREATOR.

Prototype

Parcelable.Creator CREATOR

To view the source code for android.app FragmentState CREATOR.

Click Source Link

Usage

From source file:android.app.FragmentManager.java

public FragmentManagerState(Parcel in) {
    mActive = in.createTypedArray(FragmentState.CREATOR);
    mAdded = in.createIntArray();
    mBackStack = in.createTypedArray(BackStackState.CREATOR);
}