重新加载位图列表

发布于 2024-11-18 00:16:44 字数 166 浏览 4 评论 0原文

我有一个初始化活动,通过网络加载约 10 个位图。位图存储在静态变量中,然后启动主活动。从主活动中按“返回”或“主页”,然后导航回应用程序后,初始化过程将重新开始。看来我的主要活动一旦调用 onPause() 就会被销毁。我尝试过序列化位图,但它们太大了。保存和恢复这么多位图而无需再次执行初始化过程的最佳方法是什么?

I have an initialization activity that loads ~10 bitmaps over the network. The bitmaps are stored in a static variable and then the main activity is started. After pressing back or home from the main activity and then navigating back to the app, the initialization process starts over. Looks like my main activity is being destroyed as soon as onPause() is called. I've tried serializing the bitmaps, but they're too big. What's the best way save and restore this many bitmaps without having to go through the initialization process again?

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

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

发布评论

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

评论(1

假扮的天使 2024-11-25 00:16:44

您应该使用磁盘缓存来存储它们,请参阅 Android 培训课程 高效显示位图,课程缓存位图

You should use a disk cache to store them see the Android Training class Displaying Bitmaps Efficiently, lesson Caching Bitmaps.

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