The whole line will be reloaded after the call notifyItemChanged()
Two options:
1) Disable animation of the recyclerview element by default
ItemAnimator animator = recyclerView.getItemAnimator();
if (animator instanceof SimpleItemAnimator) {
((SimpleItemAnimator) animator).setSupportsChangeAnimations(false);
}
2)
Glide,