Home
last modified time | relevance | path

Searched refs:GlideAnimation (Results 1 – 18 of 18) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/request/animation/
DNoAnimation.java8 public class NoAnimation<R> implements GlideAnimation<R> {
19 public GlideAnimation<R> build(boolean isFromMemoryCache, boolean isFirstResource) { in build()
20 return (GlideAnimation<R>) NO_ANIMATION; in build()
36 public static <R> GlideAnimation<R> get() { in get()
37 return (GlideAnimation<R>) NO_ANIMATION; in get()
DDrawableCrossFadeViewAnimation.java14 public class DrawableCrossFadeViewAnimation<T extends Drawable> implements GlideAnimation<T> {
15 private final GlideAnimation<T> defaultAnimation;
24 public DrawableCrossFadeViewAnimation(GlideAnimation<T> defaultAnimation, int duration) { in DrawableCrossFadeViewAnimation()
DViewAnimationFactory.java15 private GlideAnimation<R> glideAnimation;
39 public GlideAnimation<R> build(boolean isFromMemoryCache, boolean isFirstResource) { in build()
DDrawableCrossFadeFactory.java50 public GlideAnimation<T> build(boolean isFromMemoryCache, boolean isFirstResource) { in build()
56 GlideAnimation<T> defaultAnimation = animationFactory.build(false, isFirstResource); in build()
DGlideAnimationFactory.java16 GlideAnimation<R> build(boolean isFromMemoryCache, boolean isFirstResource); in build()
DGlideAnimation.java15 public interface GlideAnimation<R> { interface
DViewPropertyAnimationFactory.java24 public GlideAnimation<R> build(boolean isFromMemoryCache, boolean isFirstResource) { in build()
DViewPropertyAnimation.java12 public class ViewPropertyAnimation<R> implements GlideAnimation<R> {
DViewAnimation.java13 public class ViewAnimation<R> implements GlideAnimation<R> {
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
DImageViewTarget.java6 import com.bumptech.glide.request.animation.GlideAnimation;
14 public abstract class ImageViewTarget<Z> extends ViewTarget<ImageView, Z> implements GlideAnimation
74 public void onResourceReady(Z resource, GlideAnimation<? super Z> glideAnimation) { in onResourceReady()
DPreloadTarget.java4 import com.bumptech.glide.request.animation.GlideAnimation;
30 public void onResourceReady(Z resource, GlideAnimation<? super Z> glideAnimation) { in onResourceReady()
DTarget.java7 import com.bumptech.glide.request.animation.GlideAnimation;
67 void onResourceReady(R resource, GlideAnimation<? super R> glideAnimation); in onResourceReady()
DGlideDrawableImageViewTarget.java6 import com.bumptech.glide.request.animation.GlideAnimation;
51 …public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> animatio… in onResourceReady()
/external/glide/library/src/main/java/com/bumptech/glide/
DListPreloader.java5 import com.bumptech.glide.request.animation.GlideAnimation;
171 … public void onResourceReady(Object resource, GlideAnimation<? super Object> glideAnimation) { in onResourceReady()
DGlide.java63 import com.bumptech.glide.request.animation.GlideAnimation;
655 … public void onResourceReady(Object resource, GlideAnimation<? super Object> glideAnimation) { in onResourceReady()
/external/glide/library/src/main/java/com/bumptech/glide/request/
DRequestFutureTarget.java6 import com.bumptech.glide.request.animation.GlideAnimation;
179 public synchronized void onResourceReady(R resource, GlideAnimation<? super R> glideAnimation) { in onResourceReady()
DGenericRequest.java17 import com.bumptech.glide.request.animation.GlideAnimation;
485GlideAnimation<R> animation = animationFactory.build(loadedFromMemoryCache, isFirstReadyResource()… in onResourceReady()
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
DGifFrameManager.java20 import com.bumptech.glide.request.animation.GlideAnimation;
137 …public void onResourceReady(final Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) { in onResourceReady()