使用 Serialized 通过 Intent 传递数据:解决常见问题
利用 Serialized 是一种在 Android 应用程序中的 Activity 之间传递数据的方法。然而,在实施过程中可能会出现问题。以下是如何对最常见的问题进行故障排除。
问题:
可序列化实现不适用于包含 Bitmap 的自定义类。
解决方案:
确保 Bitmap 可序列化实现可序列化的自定义位图类或找到替代方法来表示和发送它。
其他问题:
通过 Intent.putExtra 传递自定义缩略图对象列表失败。
解决方案:
使用 Bundle.putSerialized 而不是 Intent.putExtra 来传递可序列化列表。需要使用 getIntent().getExtras() 检索 Bundle,并且可以使用 getSerialized 访问列表。
修订的代码:
// Prepare the Bundle Bundle bundle = new Bundle(); bundle.putSerializable("value", all_thumbs); // Pass the Bundle to the Intent intent.putExtras(bundle); // Retrieve the Bundle in the receiving Activity Intent intent = this.getIntent(); Bundle bundle = intent.getExtras(); // Retrieve the serializable list List<Thumbnail> thumbs = (List<Thumbnail>) bundle.getSerializable("value");
通过使用Bundle.putSerialized 并正确检索它,您可以通过 Intent 成功传递可序列化对象的列表。使用自定义对象时,请始终记住实现 Serialized 接口或使用兼容的数据传输机制。
以上是如何使用 Serialized 在 Android 中的 Activity 之间成功传递数据(包括位图和列表)?的详细内容。更多信息请关注PHP中文网其他相关文章!