Clear Cache memory of Picasso

Parthiban M picture Parthiban M · Dec 16, 2014 · Viewed 39.8k times · Source

I'm trying to clear the cache memory of Picasso via Android coding.

Can anyone please help me in this issue..?

I have tried using the following code, but this was not useful in my case:

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

Answer

Mohamed picture Mohamed · Apr 27, 2015

Use this instead :

 Picasso.with(getContext()).load(data.get(pos).getFeed_thumb_image()).memoryPolicy(MemoryPolicy.NO_CACHE).into(image);