Package-level declarations
Properties
Functions
Registers listener for configuration changes to retrieve whether system is in dark theme or not. Immediately upon subscribing, it sends the current value and then registers listener for changes.
Retrieve a Parcelable value from the Bundle using the given key. The value should have been added using Bundle.putParcelable with a value that implements the Parcelable interface.
Retrieve a Parcelable array from the Bundle using the given key. The array should have been added using Bundle.putParcelableArray with values that implement the Parcelable interface.
Retrieve a Parcelable array extra from the Intent using the given key. The array should have been added using Intent.putExtra with values that implement the Parcelable interface.
Retrieve a Parcelable ArrayList from the Bundle using the given key. The ArrayList should have been added using Bundle.putParcelableArrayList with values that implement the Parcelable interface.
Retrieve an extra from the intent using the given key. The extra should have been added using Intent.putExtra with a value that implements the Parcelable interface.
Retrieve an extra from the intent using the given key. The extra should have been added using Intent.putExtra.
Retrieve a value from the Bundle using the given key. The value should have been added using Bundle.putSerializable with a value that implements the Serializable interface.
Retrieve an extra from the intent using the given key. The extra should have been added using Intent.putExtra with a value that implements the Serializable interface.
Retrieve a SparseArray of Parcelable values from the Bundle using the given key. The SparseArray should have been added using Bundle.putSparseParcelableArray with values that implement the Parcelable interface.