Most visited

Recently visited

NavigationView.SavedState

public static class NavigationView.SavedState
extends AbsSavedState

java.lang.Object
   ↳ android.support.v4.view.AbsSavedState
     ↳ android.support.design.widget.NavigationView.SavedState


User interface state that is stored by NavigationView for implementing onSaveInstanceState().

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<NavigationView.SavedState> CREATOR

public Bundle menuState

Inherited fields

From class android.support.v4.view.AbsSavedState

Public constructors

NavigationView.SavedState(Parcel in, ClassLoader loader)
NavigationView.SavedState(Parcelable superState)

Public methods

void writeToParcel(Parcel dest, int flags)

Flatten this object in to a Parcel.

Inherited methods

From class android.support.v4.view.AbsSavedState
From class java.lang.Object
From interface android.os.Parcelable

Fields

menuState

Bundle menuState

Public constructors

NavigationView.SavedState

NavigationView.SavedState (Parcel in, 
                ClassLoader loader)

Parameters
in Parcel
loader ClassLoader

NavigationView.SavedState

NavigationView.SavedState (Parcelable superState)

Parameters
superState Parcelable

Public methods

writeToParcel

void writeToParcel (Parcel dest, 
                int flags)

Flatten this object in to a Parcel.

Parameters
dest Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!