# Print output for @column tags ?> Animatable2 - Android SDK | Android Developers

Most visited

Recently visited

Animatable2

public interface Animatable2
implements Animatable

android.graphics.drawable.Animatable2


Abstract class that drawables supporting animations and callbacks should extend.

Summary

Nested classes

class Animatable2.AnimationCallback

 

Public methods

abstract void clearAnimationCallbacks()

Removes all existing animation callbacks.

abstract void registerAnimationCallback(Animatable2.AnimationCallback callback)

Adds a callback to listen to the animation events.

abstract boolean unregisterAnimationCallback(Animatable2.AnimationCallback callback)

Removes the specified animation callback.

Inherited methods

Public methods

clearAnimationCallbacks

public abstract void clearAnimationCallbacks ()

Removes all existing animation callbacks.

registerAnimationCallback

public abstract void registerAnimationCallback (Animatable2.AnimationCallback callback)

Adds a callback to listen to the animation events.

Parameters
callback Animatable2.AnimationCallback: Callback to add. This value cannot be null.

unregisterAnimationCallback

public abstract boolean unregisterAnimationCallback (Animatable2.AnimationCallback callback)

Removes the specified animation callback.

Parameters
callback Animatable2.AnimationCallback: Callback to remove. This value cannot be null.

Returns
boolean false if callback didn't exist in the call back list, or true if callback has been removed successfully.