Added in API level 1

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

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)

Inherited functions
Properties
static Parcelable.Creator<View.BaseSavedState!>

Inherited properties

Public constructors

BaseSavedState

Added in API level 1
BaseSavedState(source: Parcel!)

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

Parameters
source Parcel!: parcel to read from

BaseSavedState

Added in API level 1
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

Added in API level 1
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

Added in API level 1
open fun writeToParcel(
    out: Parcel,
    flags: Int
): Unit
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 android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Properties

CREATOR

Added in API level 1
static val CREATOR: Parcelable.Creator<View.BaseSavedState!>