HomeSort by relevance Sort by last modified time
    Searched refs:GlideAnimation (Results 1 - 25 of 29) sorted by null

1 2

  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
NoAnimation.java 4 * A simple {@link com.bumptech.glide.request.animation.GlideAnimation} that performs no actions.
8 public class NoAnimation<R> implements GlideAnimation<R> {
19 public GlideAnimation<R> build(boolean isFromMemoryCache, boolean isFirstResource) {
20 return (GlideAnimation<R>) NO_ANIMATION;
36 public static <R> GlideAnimation<R> get() {
37 return (GlideAnimation<R>) NO_ANIMATION;
GlideAnimationFactory.java 4 * A factory class that can produce different {@link com.bumptech.glide.request.animation.GlideAnimation}s based on the
11 * Returns a new {@link com.bumptech.glide.request.animation.GlideAnimation}.
16 GlideAnimation<R> build(boolean isFromMemoryCache, boolean isFirstResource);
DrawableCrossFadeViewAnimation.java 7 * A cross fade {@link GlideAnimation} for {@link android.graphics.drawable.Drawable}s
14 public class DrawableCrossFadeViewAnimation<T extends Drawable> implements GlideAnimation<T> {
15 private final GlideAnimation<T> defaultAnimation;
24 public DrawableCrossFadeViewAnimation(GlideAnimation<T> defaultAnimation, int duration) {
GlideAnimation.java 15 public interface GlideAnimation<R> {
48 * @param adapter The {@link com.bumptech.glide.request.animation.GlideAnimation.ViewAdapter} wrapping a view that
50 * {@link com.bumptech.glide.request.animation.GlideAnimation.ViewAdapter#getView()}.
ViewPropertyAnimation.java 6 * A {@link com.bumptech.glide.request.animation.GlideAnimation GlideAnimation} that accepts an interface
12 public class ViewPropertyAnimation<R> implements GlideAnimation<R> {
ViewPropertyAnimationFactory.java 17 * Returns a new {@link GlideAnimation} for the given arguments. If
24 public GlideAnimation<R> build(boolean isFromMemoryCache, boolean isFirstResource) {
ViewAnimation.java 7 * A {@link com.bumptech.glide.request.animation.GlideAnimation GlideAnimation} that can apply a
13 public class ViewAnimation<R> implements GlideAnimation<R> {
DrawableCrossFadeFactory.java 9 * A factory class that produces a new {@link com.bumptech.glide.request.animation.GlideAnimation} that varies depending
50 public GlideAnimation<T> build(boolean isFromMemoryCache, boolean isFirstResource) {
56 GlideAnimation<T> defaultAnimation = animationFactory.build(false, isFirstResource);
ViewAnimationFactory.java 15 private GlideAnimation<R> glideAnimation;
30 * Returns a new {@link com.bumptech.glide.request.animation.GlideAnimation} for the given arguments. If
39 public GlideAnimation<R> build(boolean isFromMemoryCache, boolean isFirstResource) {
44 if (glideAnimation == null) {
45 glideAnimation = new ViewAnimation<R>(animationFactory);
48 return glideAnimation;
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
ImageViewTarget.java 6 import com.bumptech.glide.request.animation.GlideAnimation;
14 public abstract class ImageViewTarget<Z> extends ViewTarget<ImageView, Z> implements GlideAnimation.ViewAdapter {
74 public void onResourceReady(Z resource, GlideAnimation<? super Z> glideAnimation) {
75 if (glideAnimation == null || !glideAnimation.animate(resource, this)) {
PreloadTarget.java 4 import com.bumptech.glide.request.animation.GlideAnimation;
30 public void onResourceReady(Z resource, GlideAnimation<? super Z> glideAnimation) {
Target.java 7 import com.bumptech.glide.request.animation.GlideAnimation;
67 void onResourceReady(R resource, GlideAnimation<? super R> glideAnimation);
GlideDrawableImageViewTarget.java 6 import com.bumptech.glide.request.animation.GlideAnimation;
43 * If no {@link com.bumptech.glide.request.animation.GlideAnimation} is given or if the animation does not set the
51 public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> animation) {
  /external/glide/library/src/main/java/com/bumptech/glide/
ListPreloader.java 5 import com.bumptech.glide.request.animation.GlideAnimation;
171 public void onResourceReady(Object resource, GlideAnimation<? super Object> glideAnimation) {
  /external/glide/library/src/main/java/com/bumptech/glide/request/
RequestFutureTarget.java 6 import com.bumptech.glide.request.animation.GlideAnimation;
179 public synchronized void onResourceReady(R resource, GlideAnimation<? super R> glideAnimation) {
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
PlaybackOverlayActivity.java 31 import com.bumptech.glide.request.animation.GlideAnimation;
162 public void onResourceReady(Bitmap bitmap, GlideAnimation anim) {
MovieDetailsFragment.java 46 import com.bumptech.glide.request.animation.GlideAnimation;
168 public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> glideAnimation) {
195 GlideAnimation<? super GlideDrawable>
196 glideAnimation) {
MainFragment.java 44 import com.bumptech.glide.request.animation.GlideAnimation;
213 GlideAnimation<? super GlideDrawable>
214 glideAnimation) {
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/chat/
ChatAdapter.java 34 import com.bumptech.glide.request.animation.GlideAnimation;
113 GlideAnimation<? super Bitmap> glideAnimation) {
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/chatlist/
ChatListAdapter.java 31 import com.bumptech.glide.request.animation.GlideAnimation;
203 GlideAnimation<? super Bitmap> glideAnimation) {
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/contacts/
ContactsListAdapter.java 34 import com.bumptech.glide.request.animation.GlideAnimation;
176 GlideAnimation<? super Bitmap> glideAnimation) {
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/chat/
ChatAdapter.java 34 import com.bumptech.glide.request.animation.GlideAnimation;
113 GlideAnimation<? super Bitmap> glideAnimation) {
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/chatlist/
ChatListAdapter.java 31 import com.bumptech.glide.request.animation.GlideAnimation;
203 GlideAnimation<? super Bitmap> glideAnimation) {
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/contacts/
ContactsListAdapter.java 34 import com.bumptech.glide.request.animation.GlideAnimation;
176 GlideAnimation<? super Bitmap> glideAnimation) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifFrameManager.java 20 import com.bumptech.glide.request.animation.GlideAnimation;
137 public void onResourceReady(final Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {

Completed in 145 milliseconds

1 2