parcelableArray

inline fun <T : Parcelable> Bundle.parcelableArray(key: String): Array<T>?

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.

Return

the array of the key, or null if no such value was found

Parameters

key

the key of the value