In my android application, there is a recyclerview which each item has an image, I've been loaded them with Picasso, the problem is after some scrolling down, if you scroll up some images load again and it's annoying. What can I do to cache all images so no more reloading happens? I know this is not the first time that this question has been asked but after searching a lot I couldn't find a comprehensive solution. Here is how I used Picasso:
Picasso.with(context).load(link).into(myHolder.img);