BaseSavedState
open class BaseSavedState : AbsSavedState
Base class for derived classes that want to save and restore their own state in android.view.View#onSaveInstanceState().
Summary
Inherited constants
|
From class Parcelable
Int |
CONTENTS_FILE_DESCRIPTOR
Descriptor bit used with describeContents(): indicates that the Parcelable object's flattened representation includes a file descriptor.
|
Int |
PARCELABLE_WRITE_RETURN_VALUE
Flag for use with writeToParcel: the object being written is a return value, that is the result of a function such as "Parcelable someFunction()", "void someFunction(out Parcelable)", or "void someFunction(inout Parcelable)". Some implementations may want to release resources at this point.
|
|
Public constructors
|
|
Constructor used when reading from a parcel.
|
|
Constructor used when reading from a parcel using a given class loader.
|
|
Constructor called by derived classes when creating their SavedState objects
|
Public constructors
<init>
BaseSavedState(source: Parcel!)
Constructor used when reading from a parcel. Reads the state of the superclass.
| Parameters |
source |
Parcel!: parcel to read from |
<init>
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 |
<init>
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
Properties