I have a RecyclerView with 10 items. Every item has a TextView and an ImageView.
Let us suppose for item 5, I just want to update the TextView and leave its ImageView as t is, how can we proceed to do it?
I can use notifyItemChanged(int position)
but it will try to refresh the entire layout, which I don't want. Any solution?