android picasso清除缓存

android picasso清除缓存,第1张

概述我正在使用毕加索来展示自己的肖像,而当我们改变自己的照片时,我想要清除这个用户的缓存(或者所有用户的肖像缓存),这里是我的代码,它不起作用,任何人都可以帮助我? LruCache lruCache = new LruCache(context);lruCache.clear();Picasso picasso = new Picasso.Builder(context).memoryCache 我正在使用毕加索来展示自己的肖像,而当我们改变自己的照片时,我想要清除这个用户的缓存(或者所有用户的肖像缓存),这里是我的代码,它不起作用,任何人都可以帮助我?
LruCache lruCache = new LruCache(context);lruCache.clear();Picasso picasso = new Picasso.Builder(context).memoryCache(lruCache).build();picasso.load(portraitUrl).resize(50,50).centerCrop().error(R.drawable.user_portrait).into(portaitVIEw);
解决方法 在最近的毕加索版本中,有一种无效的新方法,没有任何解决方法,所以我认为前面提到的自定义Picassotools类现在已经过时了
Picasso.with(getActivity()).invalIDate(file);
总结

以上是内存溢出为你收集整理的android picasso清除缓存全部内容,希望文章能够帮你解决android picasso清除缓存所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1132190.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存