How to avoid flickering of imageview while using glide and calling notifyDataSetChanged on adapter.
Every time on pull down refresh all the images will flicker.
Glide.(context).load(attachment.get(2).getImageLoadingUrl()).override(destWidth,destheight)
.placeholder(R.drawable.imageplaceholder)
.fallback( R.drawable.noimage )
.error(R.drawable.noimage) .transition(DrawableTransitionOptions.withCrossFade())
.skipMemoryCache(true).diskCacheStrategy(DiskCacheStrategy.RESOURCE)
.into(iv) ;