Android 在安卓系统中清除毕加索的缓存?

Android 在安卓系统中清除毕加索的缓存?,android,Android,如何清除毕加索图书馆的缓存 Picasso.with(mActivity).load("http://"+AppConstants.IPAddress+"/MenupicsServices/UserPhotos/"+DataSource.GetValue(mActivity, AppConstants.Save_UserDetails, AppConstants.User_Profile_Photo)) .resize(120, 120) .skipMemoryCache()

如何清除毕加索图书馆的缓存

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);
试试这个

        Picasso.with(context).cache.clear();
有关更多参考,请参见此。


如果对您有效,请标记为up

但对我来说,在这之后,Picasso.withcontext的缓存属性就不存在了。你能告诉我还有什么其他的方法来清理缓存吗