Skip to content Skip to sidebar Skip to footer

Cannot Pass Selfmade Serializable Object To Another Activity Via Intent

I created an object which contains data fields of the types ImageView, boolean and Integer. public class MemoryCard implements View.OnClickListener, Serializable { private Ima

Solution 1:

Is ImageView serializable? An object if serializable only if it implements Serializable and all its members are serializable.


Post a Comment for "Cannot Pass Selfmade Serializable Object To Another Activity Via Intent"