import android.os.Parcel; import android.os.Parcelable; public class MClass implements Parcelable { private byte[] _byte; public MClass() { } publ
A shorter solution without storing the byte arrays length:
dest.writeByteArray(byteArray); byteArray = in.createByteArray();