Interface | Description |
---|---|
Transition<R> | |
Transition.ViewAdapter |
An interface wrapping a view that exposes the necessary methods to run the various types of
android animations as transitions: (
ViewTransition , ViewPropertyTransition and
animated Drawable s). |
TransitionFactory<R> |
A factory class that can produce different
Transition s based on the state of the
request. |
ViewPropertyTransition.Animator |
An interface that allows an animation to be applied on or started from an
View . |
Class | Description |
---|---|
BitmapContainerTransitionFactory<R> |
A
TransitionFactory for complex types that have a Bitmap inside. |
BitmapTransitionFactory |
A
TransitionFactory for Bitmap s that uses a Drawable transition
factory to transition from an existing drawable already visible on the target to the new bitmap. |
DrawableCrossFadeFactory |
A factory class that produces a new
Transition that varies depending on whether or not
the drawable was loaded from the memory cache and whether or not the drawable is the first image
to be put on the target. |
DrawableCrossFadeFactory.Builder |
A Builder for
DrawableCrossFadeFactory . |
DrawableCrossFadeTransition |
A cross fade
Transition for Drawable s that uses an
TransitionDrawable to transition from an existing drawable
already visible on the target to a new drawable. |
NoTransition<R> |
A simple
Transition that performs no actions. |
NoTransition.NoAnimationFactory<R> |
A factory that always returns the same
NoTransition . |
ViewAnimationFactory<R> |
A
TransitionFactory that produces ViewTransition s. |
ViewPropertyAnimationFactory<R> |
A
TransitionFactory that produces ViewPropertyAnimations. |
ViewPropertyTransition<R> |
A
Transition that accepts an interface that can apply an animation like a ViewPropertyAnimator or a ObjectAnimator that can be used
to transition a resource into a View . |
ViewTransition<R> |
A
Transition that can apply a Animation to a
View using
View.startAnimation(android.view.animation.Animation) . |