Interface | Description |
---|---|
GlideAnimation<R> | |
GlideAnimation.ViewAdapter |
An interface wrapping a view that exposes the necessary methods to run the various types of android animations
(
ViewAnimation ,
ViewPropertyAnimation and animated
Drawable s). |
GlideAnimationFactory<R> |
A factory class that can produce different
GlideAnimation s based on the
state of the request. |
ViewPropertyAnimation.Animator |
An interface that allows an animation to be applied on or started from an
View . |
Class | Description |
---|---|
BitmapContainerCrossFadeFactory<T> |
A cross fade
GlideAnimation for complex types that have a Bitmap inside
that uses an TransitionDrawable to transition from an existing drawable
already visible on the target to the new bitmap. |
BitmapCrossFadeFactory |
A cross fade
GlideAnimation for Bitmap s
that uses an TransitionDrawable to transition from an existing drawable
already visible on the target to the new bitmap. |
DrawableCrossFadeFactory<T extends Drawable> |
A factory class that produces a new
GlideAnimation 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 set on the target. |
DrawableCrossFadeViewAnimation<T extends Drawable> |
A cross fade
GlideAnimation for Drawable s
that uses an TransitionDrawable to transition from an existing drawable
already visible on the target to a new drawable. |
NoAnimation<R> |
A simple
GlideAnimation that performs no actions. |
NoAnimation.NoAnimationFactory<R> |
A factory that always returns the same
NoAnimation . |
ViewAnimation<R> | |
ViewAnimationFactory<R> |
A
GlideAnimationFactory that produces
ViewAnimation s. |
ViewPropertyAnimation<R> |
A
GlideAnimation that accepts an interface
that can apply an animation like a ViewPropertyAnimator
or a ObjectAnimator to an View . |
ViewPropertyAnimationFactory<R> |
A
GlideAnimationFactory that produces ViewPropertyAnimations. |