A B C E F G H I K L M N O P R S T V W X Y

A

addListener(Animator.AnimatorListener) - Method in class com.nineoldandroids.animation.Animator
Adds a listener to the set of listeners that are sent events through the life of an animation, such as start, repeat, and end.
addUpdateListener(ValueAnimator.AnimatorUpdateListener) - Method in class com.nineoldandroids.animation.ValueAnimator
Adds a listener to the set of listeners that are sent update events through the life of an animation.
after(Animator) - Method in class com.nineoldandroids.animation.AnimatorSet.Builder
Sets up the given animation to play when the animation supplied in the AnimatorSet.play(Animator) call that created this Builder object to start when the animation supplied in this method call ends.
after(long) - Method in class com.nineoldandroids.animation.AnimatorSet.Builder
Sets up the animation supplied in the AnimatorSet.play(Animator) call that created this Builder object to play when the given amount of time elapses.
alpha(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's alpha property to be animated to the specified value.
alphaBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's alpha property to be animated by the specified value.
animate(View) - Static method in class com.nineoldandroids.view.ViewPropertyAnimator
This method returns a ViewPropertyAnimator object, which can be used to animate specific properties on this View.
Animator - Class in com.nineoldandroids.animation
This is the superclass for classes which provide basic support for animations which can be started, ended, and have AnimatorListeners added to them.
Animator() - Constructor for class com.nineoldandroids.animation.Animator
 
Animator.AnimatorListener - Interface in com.nineoldandroids.animation
An animation listener receives notifications from an animation.
AnimatorInflater - Class in com.nineoldandroids.animation
This class is used to instantiate animator XML files into Animator objects.
AnimatorInflater() - Constructor for class com.nineoldandroids.animation.AnimatorInflater
 
AnimatorListenerAdapter - Class in com.nineoldandroids.animation
This adapter class provides empty implementations of the methods from Animator.AnimatorListener.
AnimatorListenerAdapter() - Constructor for class com.nineoldandroids.animation.AnimatorListenerAdapter
 
AnimatorProxy - Class in com.nineoldandroids.view.animation
A proxy class to allow for modifying post-3.0 view properties on all pre-3.0 platforms.
AnimatorSet - Class in com.nineoldandroids.animation
This class plays a set of Animator objects in the specified order.
AnimatorSet() - Constructor for class com.nineoldandroids.animation.AnimatorSet
 
AnimatorSet.Builder - Class in com.nineoldandroids.animation
The Builder object is a utility class to facilitate adding animations to a AnimatorSet along with the relationships between the various animations.
applyTransformation(float, Transformation) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
ArgbEvaluator - Class in com.nineoldandroids.animation
This evaluator can be used to perform type interpolation between integer values that represent ARGB colors.
ArgbEvaluator() - Constructor for class com.nineoldandroids.animation.ArgbEvaluator
 

B

before(Animator) - Method in class com.nineoldandroids.animation.AnimatorSet.Builder
Sets up the given animation to play when the animation supplied in the AnimatorSet.play(Animator) call that created this Builder object ends.

C

cancel() - Method in class com.nineoldandroids.animation.Animator
Cancels the animation.
cancel() - Method in class com.nineoldandroids.animation.AnimatorSet
Cancels the animation.
cancel() - Method in class com.nineoldandroids.animation.ValueAnimator
 
cancel() - Method in class com.nineoldandroids.view.ViewPropertyAnimator
Cancels all property animations that are currently running or pending.
clearAllAnimations() - Static method in class com.nineoldandroids.animation.ValueAnimator
Clear all animations on this thread, without canceling or ending them.
clone() - Method in class com.nineoldandroids.animation.Animator
 
clone() - Method in class com.nineoldandroids.animation.AnimatorSet
 
clone() - Method in class com.nineoldandroids.animation.Keyframe
 
clone() - Method in class com.nineoldandroids.animation.ObjectAnimator
 
clone() - Method in class com.nineoldandroids.animation.PropertyValuesHolder
 
clone() - Method in class com.nineoldandroids.animation.ValueAnimator
 
com.nineoldandroids.animation - package com.nineoldandroids.animation
 
com.nineoldandroids.util - package com.nineoldandroids.util
 
com.nineoldandroids.view - package com.nineoldandroids.view
 
com.nineoldandroids.view.animation - package com.nineoldandroids.view.animation
 

E

end() - Method in class com.nineoldandroids.animation.Animator
Ends the animation.
end() - Method in class com.nineoldandroids.animation.AnimatorSet
Ends the animation.
end() - Method in class com.nineoldandroids.animation.ValueAnimator
 
evaluate(float, Object, Object) - Method in class com.nineoldandroids.animation.ArgbEvaluator
This function returns the calculated in-between value for a color given integers that represent the start and end values in the four bytes of the 32-bit int.
evaluate(float, Number, Number) - Method in class com.nineoldandroids.animation.FloatEvaluator
This function returns the result of linearly interpolating the start and end values, with fraction representing the proportion between the start and end values.
evaluate(float, Integer, Integer) - Method in class com.nineoldandroids.animation.IntEvaluator
This function returns the result of linearly interpolating the start and end values, with fraction representing the proportion between the start and end values.
evaluate(float, T, T) - Method in interface com.nineoldandroids.animation.TypeEvaluator
This function returns the result of linearly interpolating the start and end values, with fraction representing the proportion between the start and end values.

F

FloatEvaluator - Class in com.nineoldandroids.animation
This evaluator can be used to perform type interpolation between float values.
FloatEvaluator() - Constructor for class com.nineoldandroids.animation.FloatEvaluator
 
FloatProperty<T> - Class in com.nineoldandroids.util
An implementation of Property to be used specifically with fields of type float.
FloatProperty(String) - Constructor for class com.nineoldandroids.util.FloatProperty
 

G

get(T) - Method in class com.nineoldandroids.util.Property
Returns the current value that this property represents on the given object.
getAlpha() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getAlpha(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getAnimatedFraction() - Method in class com.nineoldandroids.animation.ValueAnimator
Returns the current animation fraction, which is the elapsed/interpolated fraction used in the most recent frame update on the animation.
getAnimatedValue() - Method in class com.nineoldandroids.animation.ValueAnimator
The most recent value calculated by this ValueAnimator when there is just one property being animated.
getAnimatedValue(String) - Method in class com.nineoldandroids.animation.ValueAnimator
The most recent value calculated by this ValueAnimator for propertyName.
getChildAnimations() - Method in class com.nineoldandroids.animation.AnimatorSet
Returns the current list of child Animator objects controlled by this AnimatorSet.
getCurrentAnimationsCount() - Static method in class com.nineoldandroids.animation.ValueAnimator
Return the number of animations currently running.
getCurrentPlayTime() - Method in class com.nineoldandroids.animation.ValueAnimator
Gets the current position of the animation in time, which is equal to the current time minus the time that the animation started.
getDuration() - Method in class com.nineoldandroids.animation.Animator
Gets the length of the animation.
getDuration() - Method in class com.nineoldandroids.animation.AnimatorSet
Gets the length of each of the child animations of this AnimatorSet.
getDuration() - Method in class com.nineoldandroids.animation.ValueAnimator
Gets the length of the animation.
getDuration() - Method in class com.nineoldandroids.view.ViewPropertyAnimator
Returns the current duration of property animations.
getFraction() - Method in class com.nineoldandroids.animation.Keyframe
Gets the time for this keyframe, as a fraction of the overall animation duration.
getFrameDelay() - Static method in class com.nineoldandroids.animation.ValueAnimator
The amount of time, in milliseconds, between each frame of the animation.
getInterpolator() - Method in class com.nineoldandroids.animation.Keyframe
Gets the optional interpolator for this Keyframe.
getInterpolator() - Method in class com.nineoldandroids.animation.ValueAnimator
Returns the timing interpolator that this ValueAnimator uses.
getListeners() - Method in class com.nineoldandroids.animation.Animator
Gets the set of Animator.AnimatorListener objects that are currently listening for events on this Animator object.
getName() - Method in class com.nineoldandroids.util.Property
Returns the name for this property.
getPivotX() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getPivotX(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getPivotY() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getPivotY(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getPropertyName() - Method in class com.nineoldandroids.animation.ObjectAnimator
Gets the name of the property that will be animated.
getPropertyName() - Method in class com.nineoldandroids.animation.PropertyValuesHolder
Gets the name of the property that will be animated.
getRepeatCount() - Method in class com.nineoldandroids.animation.ValueAnimator
Defines how many times the animation should repeat.
getRepeatMode() - Method in class com.nineoldandroids.animation.ValueAnimator
Defines what this animation should do when it reaches the end.
getRotation() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getRotation(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getRotationX() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getRotationX(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getRotationY() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getRotationY(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getScaleX() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getScaleX(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getScaleY() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getScaleY(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getScrollX() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getScrollX(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getScrollY() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getScrollY(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getStartDelay() - Method in class com.nineoldandroids.animation.Animator
The amount of time, in milliseconds, to delay starting the animation after Animator.start() is called.
getStartDelay() - Method in class com.nineoldandroids.animation.AnimatorSet
The amount of time, in milliseconds, to delay starting the animation after AnimatorSet.start() is called.
getStartDelay() - Method in class com.nineoldandroids.animation.ValueAnimator
The amount of time, in milliseconds, to delay starting the animation after ValueAnimator.start() is called.
getStartDelay() - Method in class com.nineoldandroids.view.ViewPropertyAnimator
Returns the current startDelay of property animations.
getTarget() - Method in class com.nineoldandroids.animation.ObjectAnimator
The target object whose property will be animated by this animation
getTranslationX() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getTranslationX(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getTranslationY() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getTranslationY(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getType() - Method in class com.nineoldandroids.animation.Keyframe
Gets the type of keyframe.
getType() - Method in class com.nineoldandroids.util.Property
Returns the type for this property.
getValue() - Method in class com.nineoldandroids.animation.Keyframe
Gets the value for this Keyframe.
getValues() - Method in class com.nineoldandroids.animation.ValueAnimator
Returns the values that this ValueAnimator animates between.
getX() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getX(View) - Static method in class com.nineoldandroids.view.ViewHelper
 
getY() - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
getY(View) - Static method in class com.nineoldandroids.view.ViewHelper
 

H

hasValue() - Method in class com.nineoldandroids.animation.Keyframe
Indicates whether this keyframe has a valid value.

I

INFINITE - Static variable in class com.nineoldandroids.animation.ValueAnimator
This value used used with the ValueAnimator.setRepeatCount(int) property to repeat the animation indefinitely.
IntEvaluator - Class in com.nineoldandroids.animation
This evaluator can be used to perform type interpolation between int values.
IntEvaluator() - Constructor for class com.nineoldandroids.animation.IntEvaluator
 
IntProperty<T> - Class in com.nineoldandroids.util
An implementation of Property to be used specifically with fields of type int.
IntProperty(String) - Constructor for class com.nineoldandroids.util.IntProperty
 
isReadOnly() - Method in class com.nineoldandroids.util.Property
Returns true if the Property.set(Object, Object) method does not set the value on the target object (in which case the set() method should throw a NoSuchPropertyException exception).
isRunning() - Method in class com.nineoldandroids.animation.Animator
Returns whether this Animator is currently running (having been started and gone past any initial startDelay period and not yet ended).
isRunning() - Method in class com.nineoldandroids.animation.AnimatorSet
Returns true if any of the child animations of this AnimatorSet have been started and have not yet ended.
isRunning() - Method in class com.nineoldandroids.animation.ValueAnimator
 
isStarted() - Method in class com.nineoldandroids.animation.Animator
Returns whether this Animator has been started and not yet ended.
isStarted() - Method in class com.nineoldandroids.animation.AnimatorSet
 
isStarted() - Method in class com.nineoldandroids.animation.ValueAnimator
 

K

Keyframe - Class in com.nineoldandroids.animation
This class holds a time/value pair for an animation.
Keyframe() - Constructor for class com.nineoldandroids.animation.Keyframe
 

L

loadAnimator(Context, int) - Static method in class com.nineoldandroids.animation.AnimatorInflater
Loads an Animator object from a resource

M

mProperty - Variable in class com.nineoldandroids.animation.PropertyValuesHolder
 

N

NEEDS_PROXY - Static variable in class com.nineoldandroids.view.animation.AnimatorProxy
Whether or not the current running platform needs to be proxied.
NoSuchPropertyException - Exception in com.nineoldandroids.util
Thrown when code requests a Property on a class that does not expose the appropriate method or field.
NoSuchPropertyException(String) - Constructor for exception com.nineoldandroids.util.NoSuchPropertyException
 

O

ObjectAnimator - Class in com.nineoldandroids.animation
This subclass of ValueAnimator provides support for animating properties on target objects.
ObjectAnimator() - Constructor for class com.nineoldandroids.animation.ObjectAnimator
Creates a new ObjectAnimator object.
of(Class<T>, Class<V>, String) - Static method in class com.nineoldandroids.util.Property
This factory method creates and returns a Property given the class and name parameters, where the "name" parameter represents either: a public getName() method on the class which takes no arguments, plus an optional public setName() method which takes a value of the same type returned by getName() a public isName() method on the class which takes no arguments, plus an optional public setName() method which takes a value of the same type returned by isName() a public name field on the class
ofFloat(float, float) - Static method in class com.nineoldandroids.animation.Keyframe
Constructs a Keyframe object with the given time and value.
ofFloat(float) - Static method in class com.nineoldandroids.animation.Keyframe
Constructs a Keyframe object with the given time.
ofFloat(Object, String, float...) - Static method in class com.nineoldandroids.animation.ObjectAnimator
Constructs and returns an ObjectAnimator that animates between float values.
ofFloat(T, Property<T, Float>, float...) - Static method in class com.nineoldandroids.animation.ObjectAnimator
Constructs and returns an ObjectAnimator that animates between float values.
ofFloat(String, float...) - Static method in class com.nineoldandroids.animation.PropertyValuesHolder
Constructs and returns a PropertyValuesHolder with a given property name and set of float values.
ofFloat(Property<?, Float>, float...) - Static method in class com.nineoldandroids.animation.PropertyValuesHolder
Constructs and returns a PropertyValuesHolder with a given property and set of float values.
ofFloat(float...) - Static method in class com.nineoldandroids.animation.ValueAnimator
Constructs and returns a ValueAnimator that animates between float values.
ofInt(float, int) - Static method in class com.nineoldandroids.animation.Keyframe
Constructs a Keyframe object with the given time and value.
ofInt(float) - Static method in class com.nineoldandroids.animation.Keyframe
Constructs a Keyframe object with the given time.
ofInt(Object, String, int...) - Static method in class com.nineoldandroids.animation.ObjectAnimator
Constructs and returns an ObjectAnimator that animates between int values.
ofInt(T, Property<T, Integer>, int...) - Static method in class com.nineoldandroids.animation.ObjectAnimator
Constructs and returns an ObjectAnimator that animates between int values.
ofInt(String, int...) - Static method in class com.nineoldandroids.animation.PropertyValuesHolder
Constructs and returns a PropertyValuesHolder with a given property name and set of int values.
ofInt(Property<?, Integer>, int...) - Static method in class com.nineoldandroids.animation.PropertyValuesHolder
Constructs and returns a PropertyValuesHolder with a given property and set of int values.
ofInt(int...) - Static method in class com.nineoldandroids.animation.ValueAnimator
Constructs and returns a ValueAnimator that animates between int values.
ofKeyframe(String, Keyframe...) - Static method in class com.nineoldandroids.animation.PropertyValuesHolder
Constructs and returns a PropertyValuesHolder object with the specified property name and set of values.
ofKeyframe(Property, Keyframe...) - Static method in class com.nineoldandroids.animation.PropertyValuesHolder
Constructs and returns a PropertyValuesHolder object with the specified property and set of values.
ofObject(float, Object) - Static method in class com.nineoldandroids.animation.Keyframe
Constructs a Keyframe object with the given time and value.
ofObject(float) - Static method in class com.nineoldandroids.animation.Keyframe
Constructs a Keyframe object with the given time.
ofObject(Object, String, TypeEvaluator, Object...) - Static method in class com.nineoldandroids.animation.ObjectAnimator
Constructs and returns an ObjectAnimator that animates between Object values.
ofObject(T, Property<T, V>, TypeEvaluator<V>, V...) - Static method in class com.nineoldandroids.animation.ObjectAnimator
Constructs and returns an ObjectAnimator that animates between Object values.
ofObject(String, TypeEvaluator, Object...) - Static method in class com.nineoldandroids.animation.PropertyValuesHolder
Constructs and returns a PropertyValuesHolder with a given property name and set of Object values.
ofObject(Property, TypeEvaluator<V>, V...) - Static method in class com.nineoldandroids.animation.PropertyValuesHolder
Constructs and returns a PropertyValuesHolder with a given property and set of Object values.
ofObject(TypeEvaluator, Object...) - Static method in class com.nineoldandroids.animation.ValueAnimator
Constructs and returns a ValueAnimator that animates between Object values.
ofPropertyValuesHolder(Object, PropertyValuesHolder...) - Static method in class com.nineoldandroids.animation.ObjectAnimator
Constructs and returns an ObjectAnimator that animates between the sets of values specified in PropertyValueHolder objects.
ofPropertyValuesHolder(PropertyValuesHolder...) - Static method in class com.nineoldandroids.animation.ValueAnimator
Constructs and returns a ValueAnimator that animates between the values specified in the PropertyValuesHolder objects.
onAnimationCancel(Animator) - Method in interface com.nineoldandroids.animation.Animator.AnimatorListener
Notifies the cancellation of the animation.
onAnimationCancel(Animator) - Method in class com.nineoldandroids.animation.AnimatorListenerAdapter
Notifies the cancellation of the animation.
onAnimationEnd(Animator) - Method in interface com.nineoldandroids.animation.Animator.AnimatorListener
Notifies the end of the animation.
onAnimationEnd(Animator) - Method in class com.nineoldandroids.animation.AnimatorListenerAdapter
Notifies the end of the animation.
onAnimationRepeat(Animator) - Method in interface com.nineoldandroids.animation.Animator.AnimatorListener
Notifies the repetition of the animation.
onAnimationRepeat(Animator) - Method in class com.nineoldandroids.animation.AnimatorListenerAdapter
Notifies the repetition of the animation.
onAnimationStart(Animator) - Method in interface com.nineoldandroids.animation.Animator.AnimatorListener
Notifies the start of the animation.
onAnimationStart(Animator) - Method in class com.nineoldandroids.animation.AnimatorListenerAdapter
Notifies the start of the animation.
onAnimationUpdate(ValueAnimator) - Method in interface com.nineoldandroids.animation.ValueAnimator.AnimatorUpdateListener
Notifies the occurrence of another frame of the animation.
onTimeUpdate(TimeAnimator, long, long) - Method in interface com.nineoldandroids.animation.TimeAnimator.TimeListener
Notifies listeners of the occurrence of another frame of the animation, along with information about the elapsed time.

P

play(Animator) - Method in class com.nineoldandroids.animation.AnimatorSet
This method creates a Builder object, which is used to set up playing constraints.
playSequentially(Animator...) - Method in class com.nineoldandroids.animation.AnimatorSet
Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.
playSequentially(List<Animator>) - Method in class com.nineoldandroids.animation.AnimatorSet
Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.
playTogether(Animator...) - Method in class com.nineoldandroids.animation.AnimatorSet
Sets up this AnimatorSet to play all of the supplied animations at the same time.
playTogether(Collection<Animator>) - Method in class com.nineoldandroids.animation.AnimatorSet
Sets up this AnimatorSet to play all of the supplied animations at the same time.
Property<T,V> - Class in com.nineoldandroids.util
A property is an abstraction that can be used to represent a mutable value that is held in a host object.
Property(Class<V>, String) - Constructor for class com.nineoldandroids.util.Property
A constructor that takes an identifying name and type for the property.
PropertyValuesHolder - Class in com.nineoldandroids.animation
This class holds information about a property and the values that that property should take on during an animation.

R

removeAllListeners() - Method in class com.nineoldandroids.animation.Animator
Removes all listeners from this object.
removeAllUpdateListeners() - Method in class com.nineoldandroids.animation.ValueAnimator
Removes all listeners from the set listening to frame updates for this animation.
removeListener(Animator.AnimatorListener) - Method in class com.nineoldandroids.animation.Animator
Removes a listener from the set listening to this animation.
removeUpdateListener(ValueAnimator.AnimatorUpdateListener) - Method in class com.nineoldandroids.animation.ValueAnimator
Removes a listener from the set listening to frame updates for this animation.
RESTART - Static variable in class com.nineoldandroids.animation.ValueAnimator
When the animation reaches the end and repeatCount is INFINITE or a positive value, the animation restarts from the beginning.
REVERSE - Static variable in class com.nineoldandroids.animation.ValueAnimator
When the animation reaches the end and repeatCount is INFINITE or a positive value, the animation reverses direction on every iteration.
reverse() - Method in class com.nineoldandroids.animation.ValueAnimator
Plays the ValueAnimator in reverse.
rotation(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's rotation property to be animated to the specified value.
rotationBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's rotation property to be animated by the specified value.
rotationX(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's rotationX property to be animated to the specified value.
rotationXBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's rotationX property to be animated by the specified value.
rotationY(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's rotationY property to be animated to the specified value.
rotationYBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's rotationY property to be animated by the specified value.

S

scaleX(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's scaleX property to be animated to the specified value.
scaleXBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's scaleX property to be animated by the specified value.
scaleY(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's scaleY property to be animated to the specified value.
scaleYBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's scaleY property to be animated by the specified value.
set(T, Float) - Method in class com.nineoldandroids.util.FloatProperty
 
set(T, Integer) - Method in class com.nineoldandroids.util.IntProperty
 
set(T, V) - Method in class com.nineoldandroids.util.Property
Sets the value on object which this property represents.
setAlpha(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setAlpha(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setCurrentPlayTime(long) - Method in class com.nineoldandroids.animation.ValueAnimator
Sets the position of the animation to the specified point in time.
setDuration(long) - Method in class com.nineoldandroids.animation.Animator
Sets the length of the animation.
setDuration(long) - Method in class com.nineoldandroids.animation.AnimatorSet
Sets the length of each of the current child animations of this AnimatorSet.
setDuration(long) - Method in class com.nineoldandroids.animation.ObjectAnimator
Sets the length of the animation.
setDuration(long) - Method in class com.nineoldandroids.animation.ValueAnimator
Sets the length of the animation.
setDuration(long) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
Sets the duration for the underlying animator that animates the requested properties.
setEvaluator(TypeEvaluator) - Method in class com.nineoldandroids.animation.PropertyValuesHolder
The TypeEvaluator will the automatically determined based on the type of values supplied to PropertyValuesHolder.
setEvaluator(TypeEvaluator) - Method in class com.nineoldandroids.animation.ValueAnimator
The type evaluator to be used when calculating the animated values of this animation.
setFloatValues(float...) - Method in class com.nineoldandroids.animation.ObjectAnimator
 
setFloatValues(float...) - Method in class com.nineoldandroids.animation.PropertyValuesHolder
Set the animated values for this object to this set of floats.
setFloatValues(float...) - Method in class com.nineoldandroids.animation.ValueAnimator
Sets float values that will be animated between.
setFraction(float) - Method in class com.nineoldandroids.animation.Keyframe
Sets the time for this keyframe, as a fraction of the overall animation duration.
setFrameDelay(long) - Static method in class com.nineoldandroids.animation.ValueAnimator
The amount of time, in milliseconds, between each frame of the animation.
setInterpolator(Interpolator) - Method in class com.nineoldandroids.animation.Animator
The time interpolator used in calculating the elapsed fraction of this animation.
setInterpolator(Interpolator) - Method in class com.nineoldandroids.animation.AnimatorSet
Sets the TimeInterpolator for all current child animations of this AnimatorSet.
setInterpolator(Interpolator) - Method in class com.nineoldandroids.animation.Keyframe
Sets the optional interpolator for this Keyframe.
setInterpolator(Interpolator) - Method in class com.nineoldandroids.animation.ValueAnimator
The time interpolator used in calculating the elapsed fraction of this animation.
setInterpolator(Interpolator) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
Sets the interpolator for the underlying animator that animates the requested properties.
setIntValues(int...) - Method in class com.nineoldandroids.animation.ObjectAnimator
 
setIntValues(int...) - Method in class com.nineoldandroids.animation.PropertyValuesHolder
Set the animated values for this object to this set of ints.
setIntValues(int...) - Method in class com.nineoldandroids.animation.ValueAnimator
Sets int values that will be animated between.
setKeyframes(Keyframe...) - Method in class com.nineoldandroids.animation.PropertyValuesHolder
Set the animated values for this object to this set of Keyframes.
setListener(Animator.AnimatorListener) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
Sets a listener for events in the underlying Animators that run the property animations.
setObjectValues(Object...) - Method in class com.nineoldandroids.animation.ObjectAnimator
 
setObjectValues(Object...) - Method in class com.nineoldandroids.animation.PropertyValuesHolder
Set the animated values for this object to this set of Objects.
setObjectValues(Object...) - Method in class com.nineoldandroids.animation.ValueAnimator
Sets the values to animate between for this animation.
setPivotX(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setPivotX(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setPivotY(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setPivotY(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setProperty(Property) - Method in class com.nineoldandroids.animation.ObjectAnimator
Sets the property that will be animated.
setProperty(Property) - Method in class com.nineoldandroids.animation.PropertyValuesHolder
Sets the property that will be animated.
setPropertyName(String) - Method in class com.nineoldandroids.animation.ObjectAnimator
Sets the name of the property that will be animated.
setPropertyName(String) - Method in class com.nineoldandroids.animation.PropertyValuesHolder
Sets the name of the property that will be animated.
setRepeatCount(int) - Method in class com.nineoldandroids.animation.ValueAnimator
Sets how many times the animation should be repeated.
setRepeatMode(int) - Method in class com.nineoldandroids.animation.ValueAnimator
Defines what this animation should do when it reaches the end.
setRotation(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setRotation(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setRotationX(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setRotationX(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setRotationY(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setRotationY(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setScaleX(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setScaleX(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setScaleY(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setScaleY(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setScrollX(int) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setScrollX(View, int) - Static method in class com.nineoldandroids.view.ViewHelper
 
setScrollY(int) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setScrollY(View, int) - Static method in class com.nineoldandroids.view.ViewHelper
 
setStartDelay(long) - Method in class com.nineoldandroids.animation.Animator
The amount of time, in milliseconds, to delay starting the animation after Animator.start() is called.
setStartDelay(long) - Method in class com.nineoldandroids.animation.AnimatorSet
The amount of time, in milliseconds, to delay starting the animation after AnimatorSet.start() is called.
setStartDelay(long) - Method in class com.nineoldandroids.animation.ValueAnimator
The amount of time, in milliseconds, to delay starting the animation after ValueAnimator.start() is called.
setStartDelay(long) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
Sets the startDelay for the underlying animator that animates the requested properties.
setTarget(Object) - Method in class com.nineoldandroids.animation.Animator
Sets the target object whose property will be animated by this animation.
setTarget(Object) - Method in class com.nineoldandroids.animation.AnimatorSet
Sets the target object for all current child animations of this AnimatorSet that take targets (ObjectAnimator and AnimatorSet).
setTarget(Object) - Method in class com.nineoldandroids.animation.ObjectAnimator
Sets the target object whose property will be animated by this animation
setTimeListener(TimeAnimator.TimeListener) - Method in class com.nineoldandroids.animation.TimeAnimator
Sets a listener that is sent update events throughout the life of an animation.
setTranslationX(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setTranslationX(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setTranslationY(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setTranslationY(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setupEndValues() - Method in class com.nineoldandroids.animation.Animator
This method tells the object to use appropriate information to extract ending values for the animation.
setupEndValues() - Method in class com.nineoldandroids.animation.AnimatorSet
 
setupEndValues() - Method in class com.nineoldandroids.animation.ObjectAnimator
 
setupStartValues() - Method in class com.nineoldandroids.animation.Animator
This method tells the object to use appropriate information to extract starting values for the animation.
setupStartValues() - Method in class com.nineoldandroids.animation.AnimatorSet
 
setupStartValues() - Method in class com.nineoldandroids.animation.ObjectAnimator
 
setValue(Object) - Method in class com.nineoldandroids.animation.Keyframe
Sets the value for this Keyframe.
setValue(T, float) - Method in class com.nineoldandroids.util.FloatProperty
A type-specific override of the FloatProperty.set(Object, Float) that is faster when dealing with fields of type float.
setValue(T, int) - Method in class com.nineoldandroids.util.IntProperty
A type-specific override of the IntProperty.set(Object, Integer) that is faster when dealing with fields of type int.
setValues(PropertyValuesHolder...) - Method in class com.nineoldandroids.animation.ValueAnimator
Sets the values, per property, being animated between.
setX(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setX(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
setY(float) - Method in class com.nineoldandroids.view.animation.AnimatorProxy
 
setY(View, float) - Static method in class com.nineoldandroids.view.ViewHelper
 
start() - Method in class com.nineoldandroids.animation.Animator
Starts this animation.
start() - Method in class com.nineoldandroids.animation.AnimatorSet
Starts this animation.
start() - Method in class com.nineoldandroids.animation.ObjectAnimator
 
start() - Method in class com.nineoldandroids.animation.ValueAnimator
 
start() - Method in class com.nineoldandroids.view.ViewPropertyAnimator
Starts the currently pending property animations immediately.

T

TimeAnimator - Class in com.nineoldandroids.animation
This class provides a simple callback mechanism to listeners that is synchronized with other animators in the system.
TimeAnimator() - Constructor for class com.nineoldandroids.animation.TimeAnimator
 
TimeAnimator.TimeListener - Interface in com.nineoldandroids.animation
Implementors of this interface can set themselves as update listeners to a TimeAnimator instance to receive callbacks on every animation frame to receive the total time since the animator started and the delta time since the last frame.
toString() - Method in class com.nineoldandroids.animation.ObjectAnimator
 
toString() - Method in class com.nineoldandroids.animation.PropertyValuesHolder
 
toString() - Method in class com.nineoldandroids.animation.ValueAnimator
 
translationX(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's translationX property to be animated to the specified value.
translationXBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's translationX property to be animated by the specified value.
translationY(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's translationY property to be animated to the specified value.
translationYBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's translationY property to be animated by the specified value.
TypeEvaluator<T> - Interface in com.nineoldandroids.animation
Interface for use with the ValueAnimator.setEvaluator(TypeEvaluator) function.

V

ValueAnimator - Class in com.nineoldandroids.animation
This class provides a simple timing engine for running animations which calculate animated values and set them on target objects.
ValueAnimator() - Constructor for class com.nineoldandroids.animation.ValueAnimator
Creates a new ValueAnimator object.
ValueAnimator.AnimatorUpdateListener - Interface in com.nineoldandroids.animation
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.
ViewHelper - Class in com.nineoldandroids.view
 
ViewPropertyAnimator - Class in com.nineoldandroids.view
This class enables automatic and optimized animation of select properties on View objects.
ViewPropertyAnimator() - Constructor for class com.nineoldandroids.view.ViewPropertyAnimator
 

W

with(Animator) - Method in class com.nineoldandroids.animation.AnimatorSet.Builder
Sets up the given animation to play at the same time as the animation supplied in the AnimatorSet.play(Animator) call that created this Builder object.
wrap(View) - Static method in class com.nineoldandroids.view.animation.AnimatorProxy
Create a proxy to allow for modifying post-3.0 view properties on all pre-3.0 platforms.

X

x(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's x property to be animated to the specified value.
xBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's x property to be animated by the specified value.

Y

y(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's y property to be animated to the specified value.
yBy(float) - Method in class com.nineoldandroids.view.ViewPropertyAnimator
This method will cause the View's y property to be animated by the specified value.

A B C E F G H I K L M N O P R S T V W X Y

Copyright © 2011-2012 Jake Wharton. All Rights Reserved.