Android 和通过 Bundle 传递嵌套的 ArrayList
如何通过 Bundle 实例将 ArrayList
实例从一个 Android Activity 传递到另一个 Android Activity?
(我可以使用 JSON 字符串。我想知道是否有更好的方法。)
提前感谢您。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其作为 Intent 中的附加项传递,用于启动新活动。由于
ArrayList
实现了Serialized
,因此您无需执行任何特殊操作即可将其提供给Intent.putExtra()
。You can pass it as an extra in the Intent that you use to fire up the new activity. Since
ArrayList
implementsSerializable
, you don't have to do anything special to feed it toIntent.putExtra()
.一般来说,通过意图在活动之间传递太多或太大的数据是不好的。最好将它们集中存储在某个地方并传递一个轻量级标识符或类似的东西,以便其他活动可以从存储中检索它们。
例如,您可以使用 Application 类来存储这些数据。只要应用程序正在运行,应用程序类就始终可用。您可以通过调用 getApplication()< 从每个 Activity 获取它/a> 方法。
In general it is not good to pass too many or too large data between activities via Intents. It's better to store them somewhere centrally and pass a lightweight identifier or something like this, so the other activity can retrieve them from the store.
E.g. you can use an Application class to store these data. An application class is always available as long as you application is running. You get it from each Activity by calling the getApplication() method.