Android,如何将 ArrayList放入在意图中?
我有两个活动,在第一个活动中,我实例化了对象 myObject 的 ArrayList。在第二个活动中,我需要获取这个Arraylist。我不知道如何有目的地做到这一点?
(对象是我创建的一个类)
提前致谢。
I have two Activities, in the first one, I instanciate an ArrayList of Object myObject. In the second activity, i need to get this Arraylist. I don't know how to do that with an intent ?
(Object is a class I have created)
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果你让你的 Object 类实现 Parcelabel 你可以将你的数组列表打包到您发送的捆绑包的意图
请参阅此链接了解例子
If you make your Object class implement Parcelabel you can pack your arraylist into the bundle you send with the intent
see this link for an example
通常你使用
Bundle
对象来传递信息活动之间,但这些仅允许简单类型对象。通常,为了传递更复杂的对象类型,您通常必须构造某种静态上下文并在其上设置值,然后该值可供第二个活动使用。这感觉很脏,但我现在已经在我的应用程序中克服了它。Usually you use
Bundle
objects to pass information between Activities, but these only allow for simple type objects. Typically, for passing more complex object types you generally have to construct a static context of some kind and set your values on that, which is then available to the second activity. It feels dirty, but I've got over it in my apps now.您的类
myObject
必须实现 Parcelable 。然后,您可以使用 putParcelableArrayListExtra 从您的意图将其传递到下一个活动并检索列表getParcelableArrayListExtraYour class
myObject
will have to implement Parcelable. Then, you can use putParcelableArrayListExtra from your intent to pass it to the next activity and retrieve the list with getParcelableArrayListExtra我是这样用的。
put:
get:
Arraylist 对象应该是可序列化的
I used like this.
put:
get:
Arraylist object should be Serializable