Example usage for android.animation ValueAnimator isRunning

List of usage examples for android.animation ValueAnimator isRunning

Introduction

In this page you can find the example usage for android.animation ValueAnimator isRunning.

Prototype

@Override
    public boolean isRunning() 

Source Link

Usage

From source file:com.quanliren.quan_one.pull.swipe.SwipeRefreshLayout.java

private boolean isAnimationRunning(ValueAnimator animation) {
    return animation != null && animation.isStarted() && animation.isRunning();
}