List of usage examples for android.animation ValueAnimator isRunning
@Override public boolean isRunning()
From source file:com.quanliren.quan_one.pull.swipe.SwipeRefreshLayout.java
private boolean isAnimationRunning(ValueAnimator animation) { return animation != null && animation.isStarted() && animation.isRunning(); }