wasabeef / recyclerview-animators

An Android Animation library which easily add itemanimator to RecyclerView items.
Apache License 2.0
11.49k stars 1.98k forks source link

Remove Animation Is Applied To All Items Strange Behaviour #188

Open lastpeony opened 3 years ago

lastpeony commented 3 years ago

I am trying to apply slide to right animation to only removed item but for some reason all items in recyclerview disappear first and then animated back to their position strangely. Please watch the following video. https://i.stack.imgur.com/s14Jr.gif

Here is my code its very simple:

    friends_screen_friendlist_recyclerview.itemAnimator = SlideInRightAnimator()
                    friends_screen_friendlist_recyclerview.itemAnimator?.apply {
                         addDuration = 120;
                        removeDuration = 1000;
                         moveDuration = 500;
                         changeDuration = 500;
                    }
     friendItems.removeAt(0)

                friends_screen_friendlist_recyclerview.adapter!!.notifyItemRemoved(0)
asthagarg2428 commented 3 years ago

Any fix ?