android – 清除毕加索的缓存内存

前端之家收集整理的这篇文章主要介绍了android – 清除毕加索的缓存内存前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图通过 Android编码清除毕加索的缓存.

任何人都可以在这个问题上帮我吗?

我已经尝试使用以下代码,但这在我的情况下没有用:

Picasso.with(getActivity()).load(data.get(pos).getFeed_thumb_image()).skipMemoryCache().into(image);

解决方法

@H_404_11@ 改为使用它:
Picasso.with(getContext()).load(data.get(pos).getFeed_thumb_image()).memoryPolicy(MemoryPolicy.NO_CACHE).into(image);
原文链接:https://www.f2er.com/android/313070.html

猜你在找的Android相关文章