I am using Picasso with recylerview. Picasso is populating the imageview from url as:
Picasso.get().url("url").center().fit().into(ivImageview)
However as I am scrolling up an down, I noticed that the image is blank then it shows the picture (meaning that It is downloading the image everytime).
Shouldn't Picasso be caching the image and reusing it? Is there something I need to enable? Thank you