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

[ad_1]

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();
}

[ad_2]

solved How to check if particular view is animating?