Most visited

Recently visited

Added in API level 4

Animatable

public interface Animatable

android.graphics.drawable.Animatable
Known Indirect Subclasses


Interface that drawables supporting animations should implement.

Summary

Public methods

abstract boolean isRunning()

Indicates whether the animation is running.

abstract void start()

Starts the drawable's animation.

abstract void stop()

Stops the drawable's animation.

Public methods

isRunning

Added in API level 4
boolean isRunning ()

Indicates whether the animation is running.

Returns
boolean True if the animation is running, false otherwise.

start

Added in API level 4
void start ()

Starts the drawable's animation.

stop

Added in API level 4
void stop ()

Stops the drawable's animation.

Hooray!