Skip to content

Instantly share code, notes, and snippets.

@snadjafi
Created July 29, 2014 21:31
Show Gist options
  • Save snadjafi/eee900777f2a9caf6101 to your computer and use it in GitHub Desktop.
Save snadjafi/eee900777f2a9caf6101 to your computer and use it in GitHub Desktop.
parcel read array
Object[] o = in.readArray(Question.class.getClassLoader());
ArrayList<mAttribute> ps = new ArrayList<Attribute>();
for (Object item : o) {
ps.add(((Attribute) item));
}
setAttributes(ps);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment