How can I make my custom objects Parcelable?

后端 未结 11 2709
旧巷少年郎
旧巷少年郎 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 08:00

    Create Parcelable class without plugin in Android Studio

    implements Parcelable in your class and then put cursor on "implements Parcelable" and hit Alt+Enter and select Add Parcelable implementation (see image). that's it.

提交回复
热议问题