I am using ImageGallery to display some images in my app, in this example the images are being saved (cached), and I dont want them to be so I have found that the images are loaded in on this adapter class Adapter with this code
private void setUpImage(ImageView iv, String imageUrl) {
if (!TextUtils.isEmpty(imageUrl)) {
Picasso.with(iv.getContext())
.load(imageUrl)
.resize(mGridItemWidth, mGridItemHeight)
.centerCrop()
.into(iv);
} else {
iv.setImageDrawable(null);
}
}
Which is called every time the gallery is displayed, what I can't figure out is why they do not get reloaded if you go back to this page?
How can I make so that every time this page load the images are reloaded?
Thanks