android.support.v4.view.ViewPropertyAnimatorListener.java Source code

Java tutorial

Introduction

Here is the source code for android.support.v4.view.ViewPropertyAnimatorListener.java

Source

package android.support.v4.view;

import android.view.View;

public interface ViewPropertyAnimatorListener {
    void onAnimationCancel(View view);

    void onAnimationEnd(View view);

    void onAnimationStart(View view);
}