recyclerview-animators
recyclerview-animators copied to clipboard
Is that possible to make animation on "notifyItemRangeChanged"?
Can anybody suggest how can FlipItemAnimation can be implemented onChange?
I see only abstract methods for adding and removing items
protected abstract void animateRemoveImpl(final RecyclerView.ViewHolder holder);
protected abstract void animateAddImpl(final RecyclerView.ViewHolder holder);
and all built-in ItemAnimators are working only with adding and removing, there is no examples for changing.
Thanks in advance.