I have a class/object which I'm attempting to make Parcelable so I can save the object to a Bundle (Well, in fact, I will add the object to an Arraylist and then save this list to, and restore it from a Bundle, complete with the objects held within it).
I was doing this by making the class the objects are derived from Serializable.
Someone advised making the class Parcelable instead. However, I can't implement it because one of the properties of this class is a FloatBuffer, and I can't see a method to save this to the Bundle in a Parcelable class.
Is there anyway to do this? Or am I out of luck?