I have many images loaded using Picasso in a view flipper which is in a fragment. I want to know if the images are still in memory when I change to a different fragment. If they persist in the memory how can I remove them.
Any suggestions on any other method to load images to a view flipper would be appreciated. The images are in the internal memory of the device.
Thanks in advance.
Try..
setIndicatorsEnabled(true)
. It refers to where your loaded image from. Also, check the official document about DEBUG INDICATORS within the link. enter link description hereTo avoid Picasso loading image from cache.
Please set
.memoryPolicy(MemoryPolicy.NO_CACHE,MemoryPolicy.NO_STORE)
.networkPolicy(NetworkPolicy.NO_CACHE,NetworkPolicy.NO_STORE)
with your needs.