Searched refs:GlideDrawable (Results 1 - 11 of 11) sorted by relevance
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/ |
H A D | BitmapToGlideDrawableTranscoder.java | 7 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 11 * to {@link com.bumptech.glide.load.resource.drawable.GlideDrawable} rather than 14 * TODO: use ? extends GlideDrawable rather than GlideDrawable directly and remove this class. 16 public class BitmapToGlideDrawableTranscoder implements ResourceTranscoder<Bitmap, GlideDrawable> { 30 public Resource<GlideDrawable> transcode(Resource<Bitmap> toTranscode) { 31 return (Resource<GlideDrawable>) (Resource<? extends GlideDrawable>)
|
H A D | GifBitmapWrapperDrawableTranscoder.java | 7 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 15 public class GifBitmapWrapperDrawableTranscoder implements ResourceTranscoder<GifBitmapWrapper, GlideDrawable> { 25 public Resource<GlideDrawable> transcode(Resource<GifBitmapWrapper> toTranscode) { 29 final Resource<? extends GlideDrawable> result; 36 return (Resource<GlideDrawable>) result;
|
/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
H A D | GlideDrawableImageViewTarget.java | 5 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 12 public class GlideDrawableImageViewTarget extends ImageViewTarget<GlideDrawable> { 15 private GlideDrawable resource; 19 * {@link com.bumptech.glide.load.resource.drawable.GlideDrawable} in an {@link android.widget.ImageView}. 24 this(view, GlideDrawable.LOOP_FOREVER); 29 * {@link com.bumptech.glide.load.resource.drawable.GlideDrawable} in an {@link android.widget.ImageView}. 32 * @param maxLoopCount A value to pass to to {@link com.bumptech.glide.load.resource.drawable.GlideDrawable}s 34 * {@link com.bumptech.glide.load.resource.drawable.GlideDrawable#setLoopCount(int)}. 51 public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> animatio [all...] |
H A D | ImageViewTargetFactory.java | 7 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 17 if (GlideDrawable.class.isAssignableFrom(clazz)) {
|
H A D | SquaringDrawable.java | 11 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 19 public class SquaringDrawable extends GlideDrawable { 20 private final GlideDrawable wrapped; 23 public SquaringDrawable(GlideDrawable wrapped, int side) {
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/drawable/ |
H A D | GlideDrawable.java | 10 public abstract class GlideDrawable extends Drawable implements Animatable { class in inherits:Drawable,Animatable
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
H A D | DrawableRequestBuilder.java | 17 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 32 * A class for creating a request to load a {@link GlideDrawable}. 42 extends GenericRequestBuilder<ModelType, ImageVideoWrapper, GifBitmapWrapper, GlideDrawable> 46 LoadProvider<ModelType, ImageVideoWrapper, GifBitmapWrapper, GlideDrawable> loadProvider, Glide glide, 48 super(context, modelClass, loadProvider, GlideDrawable.class, glide, requestTracker, lifecycle); 54 * Loads and displays the {@link GlideDrawable} retrieved by the given thumbnail request if it finishes before this 55 * request. Best used for loading thumbnail {@link GlideDrawable}s that are smaller and will be loaded more quickly 56 * than the fullsize {@link GlideDrawable}. There are no guarantees about the order in which the requests will 57 * actually finish. However, if the thumb request completes after the full request, the thumb {@link GlideDrawable} 64 * you want an animation to occur when either the full {@link GlideDrawable} load [all...] |
H A D | DrawableTypeRequest.java | 9 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 59 GlideDrawable.class, null),
|
H A D | Glide.java | 47 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 235 transcoderRegistry.register(GifBitmapWrapper.class, GlideDrawable.class,
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
H A D | GlideBitmapDrawable.java | 14 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 17 * A static {@link com.bumptech.glide.load.resource.drawable.GlideDrawable} for displaying a single image. 19 public class GlideBitmapDrawable extends GlideDrawable {
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/ |
H A D | GifDrawable.java | 20 import com.bumptech.glide.load.resource.drawable.GlideDrawable; 25 public class GifDrawable extends GlideDrawable implements GifFrameManager.FrameCallback { 302 + "GlideDrawable.LOOP_FOREVER, or equal to GlideDrawable.LOOP_INTRINSIC");
|
Completed in 253 milliseconds