Android,如何从 url 延迟加载图像并将其持久缓存在图库小部件中?

发布于 2024-11-09 12:36:05 字数 1435 浏览 0 评论 0原文

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

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

发布评论

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

评论(4

情话墙 2024-11-16 12:36:05

这是如何:

图像的延迟加载在ListView

查看第二个答案中的演示,对我帮助很大!

This is how:

Lazy load of images in ListView

Check the demo in the second answer, helped me massively!

仅此而已 2024-11-16 12:36:05

试试这个代码。通用图像加载器。

https://github.com/nostra13/Android-Universal-Image-Loader

Try this code.the universal imageloader.

https://github.com/nostra13/Android-Universal-Image-Loader

习ぎ惯性依靠 2024-11-16 12:36:05
    You have to use Picasso. 

    it's easy to use

    downlod latest jar from  http://square.github.io/picasso/

    simply load image used below code

    Picasso.with(context)
               .load(url)
               .placeholder(R.drawable.placeholder)
               .resize(imgWidth, imgHeight)
               .centerCrop()
               .into(image);
    You have to use Picasso. 

    it's easy to use

    downlod latest jar from  http://square.github.io/picasso/

    simply load image used below code

    Picasso.with(context)
               .load(url)
               .placeholder(R.drawable.placeholder)
               .resize(imgWidth, imgHeight)
               .centerCrop()
               .into(image);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文