2

我的应用程序需要使用领域列表属性打包一些对象。这是错误:

/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

在下面找到主要类:

用户测试类

@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>()
}
}
4

1 回答 1

1

@EpicPandaForce 建议的方法有效。我从 Github 存储库中添加了 RealmListParcelerConverter 并让annotation @Parcel(implementations = arrayOf(ProfilePhotoRealmProxy::class))受影响的类。

于 2017-11-08T08:09:12.910 回答