wasabeef / recyclerview-animators

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

Animation not displaying with data already initialized. #173

Open J6ey opened 5 years ago

J6ey commented 5 years ago

The animations only work when we call the notify methods with the adapter after data is initialized and added to the RecyclerView.

However, it won't work if you already have the data list initialized before you create the RecyclerView. In many cases when you already have the data, you populate the RecyclerView immediately after its creation. In this case we don't call any of the notify methods. Hence, the animations does not work. How do we make the animation work this way?

hbb20 commented 3 years ago

Any update on this?