I have a recyclerview with diffutil. Already I using Glide to load images inside the ImageViews.
recyclerview
diffutil
Glide
ImageViews
on the onBindV
onBindV
I know its late but hope it will help someone. Override these two methods in your adapter.
@Override public long getItemId(int position) { return position; } @Override public int getItemViewType(int position) { return position; }