added in version 24.1.0
belongs to Maven artifact com.android.support:customview:28.0.0-alpha1

AbsSavedState

public abstract class AbsSavedState
extends Object implements Parcelable

java.lang.Object
   ↳ android.support.v4.view.AbsSavedState
Known Direct Subclasses


A Parcelable implementation that should be used by inheritance hierarchies to ensure the state of all classes along the chain is saved.

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<AbsSavedState> CREATOR

public static final AbsSavedState EMPTY_STATE

Protected constructors

AbsSavedState(Parcelable superState)

Constructor called by derived classes when creating their SavedState objects

AbsSavedState(Parcel source)

Constructor used when reading from a parcel.

AbsSavedState(Parcel source, ClassLoader loader)

Constructor used when reading from a parcel.

Public methods

int describeContents()
final Parcelable getSuperState()
void writeToParcel(Parcel dest, int flags)

Inherited methods

From class java.lang.Object
From interface android.os.Parcelable

Fields

CREATOR

added in version 24.1.0
Creator<AbsSavedState> CREATOR

EMPTY_STATE

added in version 24.1.0
AbsSavedState EMPTY_STATE

Protected constructors

AbsSavedState

added in version 24.1.0
AbsSavedState (Parcelable superState)

Constructor called by derived classes when creating their SavedState objects

Parameters
superState Parcelable: The state of the superclass of this view

AbsSavedState

added in version 24.1.0
AbsSavedState (Parcel source)

Constructor used when reading from a parcel. Reads the state of the superclass.

Parameters
source Parcel: parcel to read from

AbsSavedState

added in version 24.1.0
AbsSavedState (Parcel source, 
                ClassLoader loader)

Constructor used when reading from a parcel. Reads the state of the superclass.

Parameters
source Parcel: parcel to read from

loader ClassLoader: ClassLoader to use for reading

Public methods

describeContents

added in version 24.1.0
int describeContents ()

Returns
int

getSuperState

added in version 24.1.0
Parcelable getSuperState ()

Returns
Parcelable

writeToParcel

added in version 24.1.0
void writeToParcel (Parcel dest, 
                int flags)

Parameters
dest Parcel

flags int