如何清除Picasso库的缓存?
Picasso.with(mActivity).load("http://"+AppConstants.IPAddress+"/MenupicsServices/UserPhotos/"+DataSource.GetValue(mActivity, AppConstants.Save_UserDetails, AppConstants.User_Profile_Photo))
.resize(120, 120)
.skipMemoryCache()
.into(Img_User_Profile);
答案 0 :(得分:0)
试试这个
Picasso.with(context).cache.clear();
有待进一步参考,请参阅此内容。 Invalidate cache in Picasso
如果适合你的话,马克。 :)