Home | History | Annotate | Download | only in glide

Lines Matching defs:thumbnail

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
60 * @see #thumbnail(float)
63 * Note - Any options on the main request will not be passed on to the thumbnail request. For example, if
64 * you want an animation to occur when either the full {@link GlideDrawable} loads or the thumbnail loads,
65 * you need to call {@link #animate(int)} on both the thumb and the full request. For a simpler thumbnail
66 * option where these options are applied to the humbnail as well, see {@link #thumbnail(float)}.
70 * Only the thumbnail call on the main request will be obeyed, recursive calls to this method are ignored.
73 * @param thumbnailRequest The request to use to load the thumbnail.
76 public DrawableRequestBuilder<ModelType> thumbnail(
78 super.thumbnail(thumbnailRequest);
86 public DrawableRequestBuilder<ModelType> thumbnail(
88 super.thumbnail(thumbnailRequest);
96 public DrawableRequestBuilder<ModelType> thumbnail(float sizeMultiplier) {
97 super.thumbnail(sizeMultiplier);