Stay organized with collections Save and categorize content based on your preferences. AbsSavedState
abstract class AbsSavedState : Parcelable
Known Indirect 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 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. | |
| Protected 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 |
Protected constructors
AbsSavedState
protected AbsSavedState(source: Parcel!)
Constructor used when reading from a parcel. Reads the state of the superclass.
| Parameters |
source | Parcel!: parcel to read from |
AbsSavedState
protected AbsSavedState(
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 |
AbsSavedState
protected AbsSavedState(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
describeContents
open fun describeContents(): Int
writeToParcel
open fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Properties
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[]]