I have a ArrayList<ArrayList<String>>
, how to do put it into a parcel? I would prefer not using serializing (but it will still be accepted if there is no other easier/better method).
ArrayList<ArrayList<String>> hello = null;
dest.writeList(hello);
in.readList(hello,null);