I\'ve got a singe object which has three fields: two strings and a Drawable
Drawable
public class MyObject implements Serializable { private static fina
You can't serialize that.
Simply put, if BitmapDrawable isn't Serializable, then you can't serialize it. Usually things like this aren't serializable because they are holding on to references to things that aren't pure data. Like a context or a handle to a drawing surface.