RecyclerView use both of ViewHolder for smooth animation from an old state to a new. This is default behaviour of RecyclerView.ItemAnimator.
You can disable animation by passing an empty item animator to RecyclerView:
listView.setItemAnimator(null);
RecyclerView use both of ViewHolder for smooth animation from an old state to a new. This is default behaviour of RecyclerView.ItemAnimator.
You can disable animation by passing an empty item animator to RecyclerView:
listView.setItemAnimator(null);