我想像whatsapp那样进行图像下载,因为模糊图像出现,当我们点击图像时,清晰的图像被下载。我想在我的Android App中做同样的工作。任何人都建议如何实现这一点?< / p>
答案 0 :(得分:0)
您可以使用任何图片加载liabrary(Picasso,Glide或UIL)
首先加载质量低的图片,如果你使用Picasso
Picasso.with(this).load("....").resize(100,100).into(imageViews);
比点击加载完整图片。