I\'d like to make class A Parcelable.
public class A {
public String str;
public ArrayList list;
}
This is what I\'ve come
I was unfortunately using a class (BarEntry
) from a 3rd party library which was not able to be parceled. I solved my problem by passing through Intent
an array of float
s and then reconstructing my BarEntry
objects at the receiving end.
This is sub-optimal but it can be a useful process if anyone has a similar circumstance where creating a parcel able object is not an option.