I have just started moving from Universal Image Loader to Glide. However, when scrolling down and up again in recyclerview I get tons of warning messages.
W/Bitmap: Called reconfigure on a bitmap that is in use! This may cause graphical corruption!
If i swap out Glide for another image loading library, the warning goes away. Code in bindViewHolder related to images:
Glide.with(viewHolder.imageView.getContext())
.load(DisplayImageUtil.getImageUrl(item.getImageUrl(), 600))
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(viewHolder.imageView);
Tested on a Nexus 5.