I am implementing a kind of tab like browsing in android using Picasso, whenever a tab is selected the Picasso code to get it from the URL is called. I want to make it more user friendly and download all of the images to the device so that selecting different tabs will be from the device not the internet.
Is there a Picasso command to cache URL for later use? Even when using it from different fragments or activity?
I have tried:
Picasso.with(this).load(URL).fetch();
but it does not seem to work as smoothly...