Sunday, 22 September 2013

Android Java -Tips (Passing object/class to another Activity using Nested Parcelable with List states)

public class Info implements Parcelable{
private address;
}
public class User {
private String name;
private List<Info> info;
}
public class ParcelableUser implements Parcelable{
private User user;
}
This is the format for passing the Nested Parcelable with List class/object.
to be continue..

No comments:

Post a Comment