How to make a class with nested objects Parcelable

前端 未结 7 743
梦如初夏
梦如初夏 2020-12-04 12:08

I\'d like to make class A Parcelable.

public class A {
    public String str;
    public ArrayList list;
}

This is what I\'ve come

7条回答
  •  孤街浪徒
    2020-12-04 12:46

    You can add the Parcelable code generator plugin from prefs, from there you can create the parcelable boiler plate code by doing: - right click class name within model - select generate - select Parcelable

    presto - your model will be updated with necessary Parcelable boilerplate code.

提交回复
热议问题