-
Interfaces Interface Description com.bumptech.glide.module.GlideModule Libraries should useLibraryGlideModuleand Applications should useAppGlideModule.
-
Classes Class Description com.bumptech.glide.load.engine.cache.ExternalCacheDiskCacheFactory useExternalPreferredCacheDiskCacheFactoryinstead.com.bumptech.glide.load.model.stream.HttpUriLoader UseUrlUriLoaderinsteadcom.bumptech.glide.load.model.stream.HttpUriLoader.Factory UseUrlUriLoader.StreamFactoryinsteadcom.bumptech.glide.load.resource.bitmap.BitmapDrawableTransformation UseDrawableTransformationinstead.com.bumptech.glide.load.resource.bitmap.VideoBitmapDecoder UseVideoDecoder.parcel(BitmapPool)instead. This class may be removed andVideoDecodermay become final in a future version of Glide.com.bumptech.glide.manager.RequestManagerFragment com.bumptech.glide.module.ManifestParser com.bumptech.glide.request.ExperimentalRequestListener Not ready for public consumption, avoid using this class. It may be removed at any time.com.bumptech.glide.request.target.BaseTarget UseCustomViewTargetif 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 implementedTargetfor any specialized use-cases. Using BaseView is unsafe if the user does not implementBaseTarget.onLoadCleared(android.graphics.drawable.Drawable), resulting in recycled bitmaps being referenced from the UI and hard to root-cause crashes.com.bumptech.glide.request.target.SimpleTarget UseCustomViewTargetif 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 aCustomTargetfor any specialized use-cases. UsingSimpleTargetorBaseTargetis unsafe if the user does not implementBaseTarget.onLoadCleared(android.graphics.drawable.Drawable), resulting in recycled bitmaps being referenced from the UI and hard to root-cause crashes.com.bumptech.glide.request.target.ViewTarget UseCustomViewTarget. Using this class is unsafe without implementingViewTarget.onLoadCleared(android.graphics.drawable.Drawable)and results in recycled bitmaps being referenced from the UI and hard to root-cause crashes.com.bumptech.glide.util.ExceptionCatchingInputStream In some cases, callers may not handle getting 0 or -1 return values from methods, which can lead to infinite loops (see #4438). UseExceptionPassthroughInputStreaminstead. This class will be deleted in a future version of Glide.
-
Fields Field Description com.bumptech.glide.load.model.Headers.NONE UseHeaders.DEFAULTinstead.com.bumptech.glide.load.resource.bitmap.Downsampler.DOWNSAMPLE_STRATEGY UseDownsampleStrategy.OPTIONdirectly instead.com.bumptech.glide.Registry.BUCKET_GIF Identical toRegistry.BUCKET_ANIMATION, just with a more confusing name. This bucket can be used for all animation types (including webp).