caching - android delete some pictures from cache Picasso -
i using picasso save collection of pictures offline viewing. later need remove pictures manually cache. can delete files folder, don't need this. need delete 2 or 3 files cache. invalidate doesn't work me. can me?
you can clear in-memory cache in picasso per image:
picasso.with(context).invalidate(imagepath); removing cache tricky , described here.
file cache delegated http client, it's not possible clear picasso. more information refer answer.
Comments
Post a Comment