Package com.bumptech.glide.request.target

Types

Link copied to clipboard
open class AppWidgetTarget : CustomTarget<T>
This class is used in order to display downloaded Bitmap inside an ImageView of an AppWidget through RemoteViews.
Link copied to clipboard
abstract class BaseTarget<Z> : Target<R>
A base Target for loading com.bumptech.glide.load.engine.Resources that provides basic or empty implementations for most methods.
Link copied to clipboard
open class BitmapImageViewTarget : ImageViewTarget<Z>
A com.bumptech.glide.request.target.Target that can display an in an android.widget.
Link copied to clipboard
open class BitmapThumbnailImageViewTarget : ThumbnailImageViewTarget<T>
Efficiently displays multiple Bitmaps loaded serially into a single android.view.
Link copied to clipboard
abstract class CustomTarget<T> : Target<R>
A base Target for loading resources (android.graphics.
Link copied to clipboard
abstract class CustomViewTarget<T : View?, Z> : Target<R>
A base Target for loading resources (android.graphics.
Link copied to clipboard
open class DrawableImageViewTarget : ImageViewTarget<Z>
A target for display Drawable objects in ImageViews.
Link copied to clipboard
open class DrawableThumbnailImageViewTarget : ThumbnailImageViewTarget<T>
Efficiently displays multiple Drawables loaded serially into a single android.view.
Link copied to clipboard
open class FixedSizeDrawable
A wrapper drawable to square the wrapped drawable so that it expands to fill a square with exactly the given side length.
Link copied to clipboard
abstract class ImageViewTarget<Z> : ViewTarget<T, Z> , Transition.ViewAdapter
A base com.bumptech.glide.request.target.Target for displaying resources in s.
Link copied to clipboard
open class ImageViewTargetFactory
A factory responsible for producing the correct type of for a given android.view.
Link copied to clipboard
open class NotificationTarget : CustomTarget<T>
This class is used to display downloaded Bitmap inside an ImageView of a Notification through RemoteViews.
Link copied to clipboard
class PreloadTarget<Z> : CustomTarget<T>
A one time use com.bumptech.glide.request.target.Target class that loads a resource into memory and then clears itself.
Link copied to clipboard
abstract class SimpleTarget<Z> : BaseTarget<Z>
A simple com.bumptech.glide.request.target.Target base class with default (usually no-op) implementations of non essential methods that allows the caller to specify an exact width/height.
Link copied to clipboard
interface SizeReadyCallback
A callback that must be called when the target has determined its size.
Link copied to clipboard
interface Target<R> : LifecycleListener
An interface that Glide can load a resource into and notify of relevant lifecycle events during a load.
Link copied to clipboard
abstract class ThumbnailImageViewTarget<T> : ImageViewTarget<Z>
Avoids extra calls to requestLayout when loading more than once image into an android.widget.
Link copied to clipboard
abstract class ViewTarget<T : View?, Z> : BaseTarget<Z>
A base Target for loading android.graphics.