Android 和通过 Bundle 传递嵌套的 ArrayList

发布于 2024-10-20 05:14:32 字数 217 浏览 3 评论 0 原文

如何通过 Bundle 实例将 ArrayList> 实例从一个 Android Activity 传递到另一个 Android Activity?

(我可以使用 JSON 字符串。我想知道是否有更好的方法。)

提前感谢您。

How do you pass an instance of ArrayList<ArrayList<HashMap<String, String>>> from one Android activity to another via an instance of Bundle?

(I could use JSON strings. I'd like to know if there are better ways.)

Thanking you kindly in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

囍孤女 2024-10-27 05:14:32

您可以将其作为 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 implements Serializable, you don't have to do anything special to feed it to Intent.putExtra().

听,心雨的声音 2024-10-27 05:14:32

一般来说,通过意图在活动之间传递太多或太大的数据是不好的。最好将它们集中存储在某个地方并传递一个轻量级标识符或类似的东西,以便其他活动可以从存储中检索它们。

例如,您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文