如何在android中从web服务获取图像数据来显示图库?

发布于 2024-09-18 04:54:23 字数 141 浏览 17 评论 0原文

我们正在开发一个项目,其中图像数据来自 Web 服务,我们需要在手机中显示该图像位图数据,图像可能超过 500 个,因此当我们从 Web 服务下载数据并在图库中显示并转换图像数据时进入位图,出现内存不足错误并且程序崩溃。

请就如何实现这一目标提出建议。

we are working on a project where image data is coming from webservice and we need to display that image bitmap data in our phones, the images could have more than 500, so when we download data form webservice and displaying then in gallery with converting image data into bitmap, outofmemory error is coming and program crashes.

Please give suggestion to how to achieve this.

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

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

发布评论

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

评论(1

深海少女心 2024-09-25 04:54:23

不要将整个集合保留在内存中。

要么

  • 在用户滚动时延迟下载和转换,要么
  • 一次下载、转换一些图像并将其存储到磁盘,然后在用户滚动时延迟加载它们。

Don't keep the whole set in memory.

Either

  • download and convert lazily as the user scrolls, or
  • download, convert, and store to disk a few images at a time, and then load them lazily as the user scrolls.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文