我正在实施Android图库小部件。 我问如何懒惰(即在一个单独的线程中)从Web加载图像并持久缓存它们?所以在下一次运行中我可以在本地获得缓存的图像...
答案 0 :(得分:7)
答案 1 :(得分:5)
试试这个代码。通用图像加载器。
答案 2 :(得分:0)
答案 3 :(得分:0)
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);