I\'m trying to write an array of objects that implement Parcelable into a Parcel using writeParcelableArray.
The objects I\'m trying to write are defined (as you\'
Actually, you can extend an interface, and it looks like you need to do just that. The generics parameter in writeParcelableArray is asking for an extended interface (not the interface itself). Try creating an interface MyParcelable extends Parcelable. Then declaring your array using the interface, but the impl should be your Arrival extends MyParcelable.