【发布时间】:2017-11-06 15:11:06
【问题描述】:
我的应用需要使用领域列表属性来打包一些对象。这是错误:
/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)
}
}
个人资料照片类
@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>()
}
}
【问题讨论】:
-
您缺少
RealmListParcelConverter的代码 -
抱歉,更新了!!
-
我会尽力让你知道的!非常感谢!!!