I have a RecyclerView and each item of RecyclerView is having ImageView.
I am loading the image in that ImageView using Glide, when I scroll down the RecyclerView it loads images and this is fine, but when I again srcoll up the RecyclerView it again loads those images which are already been loaded. I do not want to load that images again which have already been loaded.
I am using the below code to load images using Glide
Glide.with(mActivity)
.load(img.getmGridViewImageUrl())
.into(imageHolder.imageView);