AbsSavedState
public
abstract
class
AbsSavedState
extends Object
implements
Parcelable
| java.lang.Object | |
| ↳ | androidx.customview.view.AbsSavedState |
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 |
|---|
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 | |
|---|---|
Fields
Protected constructors
AbsSavedState
protected 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
protected AbsSavedState (Parcel source)
Constructor used when reading from a parcel. Reads the state of the superclass.
| Parameters | |
|---|---|
source |
Parcel: parcel to read from
|
AbsSavedState
protected 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
public int describeContents ()
| Returns | |
|---|---|
int |
|