Last active
August 29, 2019 09:46
-
-
Save cmelchior/72c35fcb55cec33a71e1 to your computer and use it in GitHub Desktop.
Using Parceler 1.0.3 with Realm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Specific class for a RealmList<Bar> field | |
public class BarListParcelConverter extends RealmListParcelConverter<Bar> { | |
@Override | |
public void itemToParcel(Bar input, Parcel parcel) { | |
parcel.writeParcelable(Parcels.wrap(input), 0); | |
} | |
@Override | |
public Bar itemFromParcel(Parcel parcel) { | |
return Parcels.unwrap(parcel.readParcelable(Bar.class.getClassLoader())); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Abstract class for working with RealmLists | |
public abstract class RealmListParcelConverter<T extends RealmObject> extends CollectionParcelConverter<T, RealmList<T>> { | |
@Override | |
public RealmList<T> createCollection() { | |
return new RealmList<T>(); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Parcel(implementations = { BarRealmProxy.class }, value = Parcel.Serialization.BEAN, analyze = { Bar.class }) | |
public class Bar extends RealmObject { | |
private String baz; | |
public void setBaz(String baz) { | |
this.baz = baz; | |
} | |
public String getBaz() { | |
return baz; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Parcel(implementations = { FooRealmProxy.class }, value = Parcel.Serialization.BEAN, analyze = { Foo.class }) | |
public class Foo extends RealmObject { | |
private RealmList<Bar> bars; | |
@ParcelPropertyConverter(BarListParcelConverter.class) | |
public void setBars(RealmList<Bar> bars) { | |
this.bars = bars; | |
} | |
public RealmList<Bar> getBars() { | |
return bars; | |
} | |
} |
@patloew Hello i have tried your things which show an error : read/write generator for type io.realm.RealmList do you have any ideas of this? Thx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I wrote a generic adapter which works for all RealmLists: RealmListParcelConverter.java