how to pass objects between intents

前端 未结 4 1892
暗喜
暗喜 2021-01-23 09:42

I have a class that contains data i want to pass it between intents, this class have arraylist that contains another class objects. this is my class

    public          


        
4条回答
  •  梦毁少年i
    2021-01-23 10:07

    You may take a look at Intent.putExtra(String name, Parcelable object) and implement the parcelable interface in your class.

提交回复
热议问题