Package com.bumptech.glide.request.transition

Types

Link copied to clipboard
abstract class BitmapContainerTransitionFactory<R> : TransitionFactory<R>
A TransitionFactory for complex types that have a android.graphics.
Link copied to clipboard
open class BitmapTransitionFactory : BitmapContainerTransitionFactory<R>
A TransitionFactory for android.graphics.
Link copied to clipboard
open class DrawableCrossFadeFactory : TransitionFactory<R>
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.
Link copied to clipboard
open class DrawableCrossFadeTransition : Transition<R>
A cross fade Transition for android.graphics.drawable.
Link copied to clipboard
open class NoTransition<R> : Transition<R>
A simple Transition that performs no actions.
Link copied to clipboard
interface Transition<R>
An interface that allows a transition to be applied to android.view.
Link copied to clipboard
interface TransitionFactory<R>
A factory class that can produce different Transitions based on the state of the request.
Link copied to clipboard
open class ViewAnimationFactory<R> : TransitionFactory<R>
Link copied to clipboard
open class ViewPropertyAnimationFactory<R> : TransitionFactory<R>
A TransitionFactory that produces ViewPropertyAnimations.
Link copied to clipboard
open class ViewPropertyTransition<R> : Transition<R>
A Transition that accepts an interface that can apply an animation like a or a android.animation.
Link copied to clipboard
open class ViewTransition<R> : Transition<R>
A Transition that can apply a Animation to a View using startAnimation.