What\'s Happening:
The list (RecyclerView) is mixing up the data when I scroll.
(RecyclerView)
I.E when I scr
Only two things in your RecyclerView adapter
@Override public long getItemId(int position) { return position; }
and in constructor of adapter
setHasStableIds(true);
Hope it helps!