Example usage for Java android.view.animation AnimationSet fields, constructors, methods, implement or subclass
The text is from its open source code.
AnimationSet(boolean shareInterpolator) Constructor to use when building an AnimationSet from code | |
AnimationSet(Context context, AttributeSet attrs) Constructor used when an AnimationSet is loaded from a resource. |
void | addAnimation(Animation a) Add a child animation to this animation set. |
void | cancel() Cancel the animation. |
List | getAnimations() |
void | reset() |
void | setAnimationListener(AnimationListener listener) Binds an animation listener to this animation. |
void | setDuration(long durationMillis) Sets the duration of every child animation. |
void | setFillAfter(boolean fillAfter) |
void | setFillBefore(boolean fillBefore) |
void | setFillEnabled(boolean fillEnabled) If fillEnabled is true, the animation will apply the value of fillBefore. |
void | setInterpolator(Interpolator i) Sets the acceleration curve for this animation. |
void | setRepeatCount(int repeatCount) Sets how many times the animation should be repeated. |
void | setRepeatMode(int repeatMode) |