I was trying to convert an parcelable object into byte array, and in my class I have a byte type value. But when I marshal it using parcelable single byte is allocated 4 bytes in byte array. And in code I found parcel.writeByte internally call writeInt. Is there any way I can write a single byte into parcelable ?
Any help appreciated.