Android毕加索缓存图片

时间:2015-06-09 09:43:32

标签: android caching picasso

在写的文档中,毕加索缓存下载的图像,但我还没有看到如何从缓存中再次调用该图像的示例。

这是我第一次加载图片:

Picasso.with(getActivity())
        .load(thirdArticle.getImageURL())
        .resize(200, 150)
        .centerCrop()
        .into(mainThreeArticleImage);

第二次当我在上面调用相同的代码时,它不能从缓存中获取???

如果没有,如何通过该URL调用缓存的图像?

1 个答案:

答案 0 :(得分:9)

Picasso会自动缓存加载的图像,以便下次从缓存中加载它们。您可以通过启用指标

来检查图像是从Web,缓存还是磁盘加载的
setIndicatorsEnabled(true)

enter image description here

将显示每个图像的指示符,指定图像的加载位置 我从here

获得了参考