BaseSavedState
open class BaseSavedState : AbsSavedState
| kotlin.Any | ||
| ↳ | android.view.AbsSavedState | |
| ↳ | android.view.View.BaseSavedState | |
Base class for derived classes that want to save and restore their own state in android.view.View#onSaveInstanceState().
Summary
| Inherited constants | |
|---|---|
| Public constructors | |
|---|---|
BaseSavedState(source: Parcel!)Constructor used when reading from a parcel. |
|
BaseSavedState(source: Parcel!, loader: ClassLoader!)Constructor used when reading from a parcel using a given class loader. |
|
BaseSavedState(superState: Parcelable!)Constructor called by derived classes when creating their SavedState objects |
|
| Public methods | |
|---|---|
| open Unit |
writeToParcel(out: Parcel, flags: Int)Flatten this object in to a Parcel. |
| Inherited functions | |
|---|---|
| Properties | |
|---|---|
| static Parcelable.Creator<View.BaseSavedState!> | |
| Inherited properties | |
|---|---|
Public constructors
BaseSavedState
BaseSavedState(source: Parcel!)
Constructor used when reading from a parcel. Reads the state of the superclass.
| Parameters | |
|---|---|
source |
Parcel!: parcel to read from |
BaseSavedState
BaseSavedState(
source: Parcel!,
loader: ClassLoader!)
Constructor used when reading from a parcel using a given class loader. Reads the state of the superclass.
| Parameters | |
|---|---|
source |
Parcel!: parcel to read from |
loader |
ClassLoader!: ClassLoader to use for reading |
BaseSavedState
BaseSavedState(superState: Parcelable!)
Constructor called by derived classes when creating their SavedState objects
| Parameters | |
|---|---|
superState |
Parcelable!: The state of the superclass of this view |
Public methods
writeToParcel
open fun writeToParcel(
out: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
| Parameters | |
|---|---|
dest |
The Parcel in which the object should be written. This value cannot be null. |
flags |
Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of the following:
|