android picasso清除缓存

前端之家收集整理的这篇文章主要介绍了android picasso清除缓存前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用毕加索来展示自己的肖像,而当我们改变自己的照片时,我想要清除这个用户的缓存(或者所有用户的肖像缓存),这里是我的代码,它不起作用,任何人都可以帮助我?
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);
原文链接:https://www.f2er.com/android/311614.html

猜你在找的Android相关文章