Interface | Description |
---|---|
AnimationListener |
This interface is a custom listener to determine the end of an animation.
|
Combinable |
This interface is implemented only by animation classes that can be combined
to animate together.
|
ParallelAnimatorListener |
This method is called when the parallel animation ends.
|
Class | Description |
---|---|
Animation |
The parent class of all animation classes.
|
BlindAnimation |
This animation hides the view by scaling its Y property to mimic the
"pulling of blinds".
|
BlinkAnimation |
This animation causes the view to fade in and fade out a customizable number
of times.
|
BounceAnimation |
This animation causes the view to bounce by translating up and down for a
customizable number of times before returning to its original position.
|
ExplodeAnimation |
This animation creates a bitmap of the view, divides them into customizable
number of X and Y parts and translates the parts away from the center of the
view to mimic an explosion.
|
FadeInAnimation |
This animation fades the view in by animating its alpha property from 0 to 1.
|
FadeOutAnimation |
This animation fades the view out by animating its alpha property to 0.
|
FlipHorizontalAnimation |
This animation causes the view to flip horizontally by a customizable number
of degrees and at a customizable pivot point.
|
FlipHorizontalToAnimation |
This animation causes the view to flip horizontally to reveal another
user-provided view at the back of the original view.
|
FlipVerticalAnimation |
This animation causes the view to flip vertically by a customizable number of
degrees and at a customizable pivot point.
|
FlipVerticalToAnimation |
This animation causes the view to flip vertically to reveal another
user-provided view at the back of the original view.
|
FoldAnimation |
This animation folds out the view for a customizable number of folds,
orientation and at a customizable anchor factor.
|
FoldLayout |
The folding layout where the number of folds, the anchor point and the
orientation of the fold can be specified.
|
HighlightAnimation |
This animation makes use of a translucent box to overlay the view before
animating its alpha property to mimic the highlighting of the view.
|
ParallelAnimator |
This class allows multiple Combinable objects to be animated in parallel.
|
PathAnimation |
This animation translates the view within its parent view and according to
the ArrayList
|
PuffInAnimation |
This animation scales down and fades in the view.
|
PuffOutAnimation |
This animation scales up and fades out the view.
|
RotationAnimation |
This animation rotates the view by a customizable number of degrees and at a
customizable pivot point.
|
ScaleInAnimation |
This animation scales in the view from 0 to 1.
|
ScaleOutAnimation |
This animation scales out the view from 1 to 0.
|
ShakeAnimation |
This animation causes the view to shake from left to right for a customizable
number of times before returning to its original position.
|
SlideInAnimation |
This animation causes the view to slide in from the borders of the screen.
|
SlideInUnderneathAnimation |
This animation causes the view to slide in underneath from its own borders.
|
SlideOutAnimation |
This animation causes the view to slide out to the borders of the screen.
|
SlideOutUnderneathAnimation |
This animation causes the view to slide out underneath to its own borders.
|
TransferAnimation |
This animation transfers the view to another view provided by the user
through scaling and translation.
|
UnfoldAnimation |
This animation folds in the view for a customizable number of folds,
orientation and at a customizable anchor factor.
|
Enum | Description |
---|---|
FoldLayout.Orientation |