I've a list of strings that I want to parcelize and then put into Realm.
public class X extends RealmObject ...
private @SerialName("ha") RealmList<String> list;
public void writeToParcel(Parcel out, int i) {
//how to do this?
}
private X(Parcel in) {
///how to do this?
}
I'm not sure how can I writeToParcel
and readToParcel
RealmList?