ExtendableSavedState

public class ExtendableSavedState
extends AbsSavedState

java.lang.Object
   ↳ androidx.customview.view.AbsSavedState
     ↳ com.google.android.material.stateful.ExtendableSavedState


SavedState for widgets that want to save and restore their own state in View.onSaveInstanceState(). Supports widgets whose state is composed or delegated out to multiple components.

Widgets with only composed or delegated state can directly instantiate this class and write to extendableStates. Widgets with additional state should subclass ExtendableSavedState rather than trying to force the additional state into extendableStates.

Summary

Inherited constants

Fields

public static final Creator<ExtendableSavedState> CREATOR

public final SimpleArrayMap<String, Bundle> extendableStates

Inherited fields

Public constructors

ExtendableSavedState(Parcelable superState)

Public methods

String toString()
void writeToParcel(Parcel out, int flags)

Inherited methods

Fields

CREATOR

public static final Creator<ExtendableSavedState> CREATOR

extendableStates

public final SimpleArrayMap<String, Bundle> extendableStates

Public constructors

ExtendableSavedState

public ExtendableSavedState (Parcelable superState)

Parameters
superState Parcelable

Public methods

toString

public String toString ()

Returns
String

writeToParcel

public void writeToParcel (Parcel out, 
                int flags)

Parameters
out Parcel

flags int