我的应用需要使用域列表属性包含一些对象。这是错误:
/StudioProjects/ML/dat-core-android/datcorelibrary/build/tmp/kapt3/stubs/release/com/ret/datcorelibrary/model/UserTest.java:29:错误:Parceler:无法找到读/写用于com.retoglobal.datingcorelibrary.model.UserTest#photos的io.realm.RealmList类型的生成器
在下面找到主要课程:
UserTest类
@Parcel(implementations = arrayOf(UserTestRealmProxy::class),
value = Parcel.Serialization.BEAN)
@RealmClass
open class UserTest(
@PrimaryKey open var id: String = "",
open var years : Int = 0,
@SerializedName("profile_photo") open var profilePhoto: ProfilePhoto? = ProfilePhoto("www", "fd"),
open var location : Property? = null,
open var town : String? = "",
open var username : String? = "") : RealmObject()
{
@ParcelPropertyConverter(RealmUserTestParcelConverter::class)
open var photos : RealmList<ProfilePhoto>? = null
set
}
class RealmUserTestParcelConverter : RealmListParcelConverter<ProfilePhoto>() {
override fun itemFromParcel(parcel: android.os.Parcel?): ProfilePhoto {
return Parcels.unwrap(parcel?.readParcelable<Parcelable>(ProfilePhoto::class.java.classLoader))
}
override fun itemToParcel(item: ProfilePhoto?, parcel: android.os.Parcel?) {
parcel?.writeParcelable(Parcels.wrap(ProfilePhoto::class.java, item), 0)
}
}
ProfilePhoto类
@Parcel(implementations = arrayOf(ProfilePhotoRealmProxy::class),
value = org.parceler.Parcel.Serialization.BEAN)
@RealmClass
open class ProfilePhoto(
@SerializedName("m") open var photo : String = "",
open var id : String = "") : RealmObject()
更新 的 RealmListParcelConverter
abstract class RealmListParcelConverter<T:RealmObject> : CollectionParcelConverter<T, RealmList<T>>() {
override fun createCollection(): RealmList<T> {
return RealmList<T>()
}
}
答案 0 :(得分:1)
@EpicPandaForce建议的方法有效。我从Github存储库中添加了RealmListParcelerConverter,并让annotation @Parcel(implementations = arrayOf(ProfilePhotoRealmProxy::class))
在受影响的类上。