writeUnsafeArray

Writes array to the Parcel, like Parcel.writeArray. Except this function will not throw a RuntimeException when the array contains an element that is not supported by Parcel.writeValue.

When an element is not supported, the toString() value of the element is written to the parcel instead.

Note: Only use this method when the types are unknown at runtime. For type-safe arrays use Parcel.writeCollectionOptimized instead.

Return

true when all elements are supported; false when at least one element is not supported.