| Interface | Description |
|---|---|
| SizeReadyCallback |
A callback that must be called when the target has determined its size.
|
| Target<R> |
An interface that Glide can load a resource into and notify of relevant lifecycle events during a
load.
|
| Class | Description |
|---|---|
| AppWidgetTarget |
This class is used in order to display downloaded Bitmap inside an ImageView of an AppWidget
through RemoteViews.
|
| BaseTarget<Z> | Deprecated
Use
CustomViewTarget if loading the content into a view, the download API if
in the background
(http://bumptech.github.io/glide/doc/getting-started.html#background-threads), or a a fully
implemented Target for any specialized use-cases. |
| BitmapImageViewTarget | |
| BitmapThumbnailImageViewTarget |
Efficiently displays multiple Bitmaps loaded serially into a single
View. |
| CustomTarget<T> | |
| CustomViewTarget<T extends android.view.View,Z> |
A base
Target for loading resources (Bitmap, Drawable
etc) into Views that provides default implementations for most methods and can determine
the size of views using a ViewTreeObserver.OnDrawListener. |
| DrawableImageViewTarget |
A target for display
Drawable objects in ImageViews. |
| DrawableThumbnailImageViewTarget |
Efficiently displays multiple Drawables loaded serially into a single
View. |
| FixedSizeDrawable |
A wrapper drawable to square the wrapped drawable so that it expands to fill a square with
exactly the given side length.
|
| ImageViewTarget<Z> |
A base
Target for displaying resources in ImageViews. |
| ImageViewTargetFactory |
A factory responsible for producing the correct type of
Target for a given View subclass. |
| NotificationTarget |
This class is used to display downloaded Bitmap inside an ImageView of a Notification through
RemoteViews.
|
| PreloadTarget<Z> |
A one time use
Target class that loads a resource into
memory and then clears itself. |
| SimpleTarget<Z> | Deprecated
Use
CustomViewTarget if loading the content into a view, the download API if
in the background
(http://bumptech.github.io/glide/doc/getting-started.html#background-threads), or a CustomTarget for any specialized use-cases. |
| ThumbnailImageViewTarget<T> |
Avoids extra calls to
View.requestLayout() when loading more than once image
into an ImageView with fixed dimensions. |
| ViewTarget<T extends android.view.View,Z> | Deprecated
Use
CustomViewTarget. |