I am using the following method
Bitmap bitmap = Picasso.with(ListofCardsActivity.this) .load(overLayUrl).get();
to download and receive images from a web page.
Does this method download an image from a URL every time, even if it is already loaded?
I want that after loading the image, and then next time, I have to get the image from the cache, no need to load.
If we have a method similar to the above requirement. Please let me know
source share