I have a RecyclerView which loads some data from API, includes an image url and some data, and I use networkImageView to lazy load image.
@Override public vo
Try using stable IDs in your RecyclerView.Adapter
setHasStableIds(true) and override getItemId(int position).
setHasStableIds(true)
getItemId(int position)
Without stable IDs, after notifyDataSetChanged(), ViewHolders usually assigned to not to same positions. That was the reason of blinking in my case.
notifyDataSetChanged()
You can find a good explanation here.