How can I make my custom objects Parcelable?

后端 未结 11 2794
旧巷少年郎
旧巷少年郎 2020-11-21 07:40

I\'m trying to make my objects Parcelable. However, I have custom objects and those objects have ArrayList attributes of other custom objects I have made.

11条回答
  •  南旧
    南旧 (楼主)
    2020-11-21 07:58

    IntelliJ IDEA and Android Studio have plugins for this:

    • ★ Android Parcelable code generator (Apache License 2.0)
    • Auto Parcel (The MIT License)
    • SerializableParcelable Generator (The MIT License)
    • Parcelable Code Generator (for Kotlin) (Apache License 2.0)

    These plugins generate Android Parcelable boilerplate code based on fields in the class.

提交回复
热议问题