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

Most visited


Recently visited


AnimationUtils

public class AnimationUtils
extends Object

java.lang.Object
   ↳ android.view.animation.AnimationUtils


Defines common utilities for working with animations.

Summary


Public constructors

AnimationUtils()

Public methods

static long currentAnimationTimeMillis()

Returns the current animation time in milliseconds.

static Animation loadAnimation(Context context, int id)

Loads an Animation object from a resource

static Interpolator loadInterpolator(Context context, int id)

Loads an Interpolator object from a resource

static LayoutAnimationController loadLayoutAnimation(Context context, int id)

Loads a LayoutAnimationController object from a resource

static Animation makeInAnimation(Context c, boolean fromLeft)

Make an animation for objects becoming visible.

static Animation makeInChildBottomAnimation(Context c)

Make an animation for objects becoming visible.

static Animation makeOutAnimation(Context c, boolean toRight)

Make an animation for objects becoming invisible.

Inherited methods

Public constructors


AnimationUtils

public AnimationUtils ()

Public methods


currentAnimationTimeMillis

public static long currentAnimationTimeMillis ()

Returns the current animation time in milliseconds. This time should be used when invoking Animation#setStartTime(long). Refer to SystemClock for more information about the different available clocks. The clock used by this method is not the "wall" clock (it is not System#currentTimeMillis).

Returns
long the current animation time in milliseconds

See also:

loadAnimation

public static Animation loadAnimation (Context context, 
                int id)

Loads an Animation object from a resource

Parameters
context Context: Application context used to access resources

id int: The resource id of the animation to load

Returns
Animation The animation object referenced by the specified id

Throws
Resources.NotFoundException when the animation cannot be loaded

loadInterpolator

public static Interpolator loadInterpolator (Context context, 
                int id)

Loads an Interpolator object from a resource

Parameters
context Context: Application context used to access resources

id int: The resource id of the animation to load

Returns
Interpolator The interpolator object referenced by the specified id

Throws
android.content.res.Resources.NotFoundException
Resources.NotFoundException

loadLayoutAnimation

public static LayoutAnimationController loadLayoutAnimation (Context context, 
                int id)

Loads a LayoutAnimationController object from a resource

Parameters
context Context: Application context used to access resources

id int: The resource id of the animation to load

Returns
LayoutAnimationController The animation controller object referenced by the specified id

Throws
Resources.NotFoundException when the layout animation controller cannot be loaded

makeInAnimation

public static Animation makeInAnimation (Context c, 
                boolean fromLeft)

Make an animation for objects becoming visible. Uses a slide and fade effect.

Parameters
c Context: Context for loading resources

fromLeft boolean: is the object to be animated coming from the left

Returns
Animation The new animation

makeInChildBottomAnimation

public static Animation makeInChildBottomAnimation (Context c)

Make an animation for objects becoming visible. Uses a slide up and fade effect.

Parameters
c Context: Context for loading resources

Returns
Animation The new animation

makeOutAnimation

public static Animation makeOutAnimation (Context c, 
                boolean toRight)

Make an animation for objects becoming invisible. Uses a slide and fade effect.

Parameters
c Context: Context for loading resources

toRight boolean: is the object to be animated exiting to the right

Returns
Animation The new animation

Browse this site in English?

You requested a page in English, but your language preference for this site is English.

Would you like to change your language preference and browse this site in English? If you want to change your language preference later, use the language menu at the bottom of each page.