【发布时间】:2016-01-20 08:59:21
【问题描述】:
我正在使用以下代码将图像从 Json 加载到 imageView 中。
Picasso.with(Sell_Preview_Activity.this)
.load(Httppost_Links.imagePath
+ ConstantVariables.sellDetails_stringURL)
.resize(size, size).centerInside()
.memoryPolicy(MemoryPolicy.NO_CACHE)
.into(viewImage_imageView);
但即使在图像已被编辑后,缓存仍会保留。谁能帮我解决这个问题。
【问题讨论】:
-
你检查我的答案了吗?
标签: android json caching imageview picasso