HomeSort by relevance Sort by last modified time
    Searched refs:GlideDrawable (Results 1 - 16 of 16) sorted by null

  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/transcode/
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>)
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/
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> animation)
    [all...]
ImageViewTargetFactory.java 7 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
17 if (GlideDrawable.class.isAssignableFrom(clazz)) {
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/
GlideDrawable.java 10 public abstract class GlideDrawable extends Drawable implements Animatable {
  /external/glide/library/src/main/java/com/bumptech/glide/
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} loads or the thumbnail loads
    [all...]
DrawableTypeRequest.java 9 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
59 GlideDrawable.class, null),
Glide.java 47 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
235 transcoderRegistry.register(GifBitmapWrapper.class, GlideDrawable.class,
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
MovieDetailsFragment.java 45 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
166 .into(new SimpleTarget<GlideDrawable>(mMetrics.widthPixels, mMetrics.heightPixels) {
168 public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> glideAnimation) {
192 .into(new SimpleTarget<GlideDrawable>(width, height) {
194 public void onResourceReady(GlideDrawable resource,
195 GlideAnimation<? super GlideDrawable>
MainFragment.java 43 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
210 .into(new SimpleTarget<GlideDrawable>(width, height) {
212 public void onResourceReady(GlideDrawable resource,
213 GlideAnimation<? super GlideDrawable>
PlaybackOverlayFragment.java 53 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
425 .into(new SimpleTarget<GlideDrawable>(CARD_WIDTH, CARD_HEIGHT) {
427 public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> glideAnimation) {
  /packages/apps/Camera2/src/com/android/camera/data/
GlideFilmstripManager.java 39 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
97 private final GenericRequestBuilder<Uri, ?, ?, GlideDrawable> mTinyImageBuilder;
112 .transcode(new BitmapToGlideDrawableTranscoder(context), GlideDrawable.class)
160 public GenericRequestBuilder<Uri, ?, ?, GlideDrawable> loadMediaStoreThumb(Uri uri, Key key) {
176 public GenericRequestBuilder<Uri, ?, ?, GlideDrawable> loadTinyThumb(Uri uri, Key key) {
PhotoItem.java 38 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
191 private GenericRequestBuilder<Uri, ?, ?, GlideDrawable> renderTinySize(Uri uri) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
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/
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 833 milliseconds