无法在 Activity 之间传递包含大量 Iten 的列表
我有这样的代码:
Intent Intent = new Intent(currentActivity, nextActivity);
捆绑包 = new Bundle(); Bundle.putSerialized(nameParameter, Serialized);
我的 Serialized 是一个包含一堆元素的 ArrayList。 当我使用 startActivity 方法时。 发生 BINDER 事务失败。 我该如何解决这个问题?
I have this code:
Intent intent = new Intent(currentActivity, nextActivity);
Bundle bundle = new Bundle();
bundle.putSerializable(nameParameter, serializable);
My serializable is a ArrayList with a bunch of elements.
When I use the method startActivity.
A FAILED BINDER TRANSACTION happens.
How I can solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
意图的最大大小是有限的。考虑以其他方式传递数据:作为 ID 列表、在文件中、在数据库中......
an intent has a limited max size. consider passing your data in some other way: either as a list of IDs, in a file, in a database...