毕加索总是展示旧图像而不是某一特定图像的新图像 URL

Picasso always showing old image not the new one from one particular URL

使用 Picasso 从一个特定的图像加载图像 URL,但总是显示旧图像,而不是新图像

Picasso.get()
  .load("https://blabla.com/image/rose.png")
  .networkPolicy(NetworkPolicy.NO_CACHE, NetworkPolicy.NO_STORE)
  .into(image_view)

依赖性

implementation 'com.squareup.picasso:picasso:2.71828'

您必须添加 .memoryPolicy(MemoryPolicy.NO_CACHE)

嘿嘿,

所以你必须把这些行

Picasso.with(context).load(imageUrl)
            .error(R.drawable.error)
            .placeholder(R.drawable.placeholder)
            .memoryPolicy(MemoryPolicy.NO_CACHE, MemoryPolicy.NO_STORE)
            .into(imageView);

编辑

在 picasso 中添加 .stableKey(url)

然后再次加载图片时调用此方法

Picasso.with(getContext()).invalidate(url);

大功告成