Aktualisieren Sie eine bestimmte Inhaberansicht in Recycler

String newValue = "I like sheep.";
int updateIndex = 3;
data.set(updateIndex, newValue);
adapter.notifyItemChanged(updateIndex);
XeN0N