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

Adding list item at 0th position #26

Open anudr01d opened 9 years ago

anudr01d commented 9 years ago

Hi, I tried adding an item to 0th position in the recyclerview. The item adds but the animation nor the added item shows up. I have to manually scroll up to view the added item.

playcodebyflapjack commented 8 years ago

I think so ...

callmepeanut commented 8 years ago

You can manually scroll it to 0 like below, it works for me.

adapter.add(entity, 0);
recyclerView.scrollToPosition(0);