recyclerview-animators
recyclerview-animators copied to clipboard
RecyclerView Views Blinking
I noticed that my RecyclerView views are blinking as items are added. Is there a way to remove this effect without removing the animation?
blink is animated when some item is added/removed usually, try to set RecyclerView.setHasFixedSize(true); Adapter.setHasStableIds(true); that may help