나는이 오류 발생 다음 코드 : 그러나 나는 데이터베이스에 넣어 영역을 사용하려면, Error:Parceler: Unable to find read/write generator for type io.realm.Realm for io.realm.RealmObject.realm
사용 Realm.io (안드로이드)와 (@Parcel)
그것은 extends RealmObject
없이 모두 잘 작동되었다 용이하게. RealmObject 필드를 exlcude하고 @Parcel에 대한 기본 pojo 필드를 사용하는 방법이 있습니까?
@Parcel
public class Feed extends RealmObject{
int id;
public String text;
public String time_created;
String time_modified;
int comments_count;
int likes_count;
String feed_type;
int obj_id;
String image;
String user_name;
String user_earthmile_points;
boolean liked;
boolean commented;
boolean is_private;
String url;
int feed_creator_id;
}
는 –
기술적으로는, 나는 그것이 RealmObject을 소포 의미가있는 사용 사례를 본 적이 없다 https://github.com/johncarl81/parceler/issues/57 참조하십시오. 기본 키만 보내야합니다. – EpicPandaForce