to top
Android APIs
Added in API level 11
public static interface

ValueAnimator.AnimatorUpdateListener

android.animation.ValueAnimator.AnimatorUpdateListener

Class Overview

Implementors of this interface can add themselves as update listeners to an ValueAnimator instance to receive callbacks on every animation frame, after the current frame's values have been calculated for that ValueAnimator.

Summary

Public Methods
abstract void onAnimationUpdate(ValueAnimator animation)

Notifies the occurrence of another frame of the animation.

Public Methods

public abstract void onAnimationUpdate (ValueAnimator animation)

Added in API level 11

Notifies the occurrence of another frame of the animation.

Parameters
animation The animation which was repeated.