[Solved] How to check if particular view is animating?


This issue is reproducible when I scroll very fast.
I resolved this issue by clearing animation in onViewDetachedFromWindow of recyclerview’s adapter

 public void onViewDetachedFromWindow(UserCardHolder userCardHolder) {
    super.onViewDetachedFromWindow(userCardHolder);
    userCardHolder.getView().clearAnimation();
}

solved How to check if particular view is animating?