Class ResourceUriLoader<DataT>
- java.lang.Object
-
- com.bumptech.glide.load.model.ResourceUriLoader<DataT>
-
- Type Parameters:
DataT- The type of data produced, e.g.InputStreamorAssetFileDescriptor.
- All Implemented Interfaces:
ModelLoader<android.net.Uri,DataT>
public final class ResourceUriLoader<DataT> extends java.lang.Object implements ModelLoader<android.net.Uri,DataT>
Converts Resource Uris to resource ids if the resource Uri points to a resource in this package.This class works by parsing Uris into resource ids, then delegating the resource ID load to other
ModelLoaders, typicallyDirectResourceLoader.This class really shouldn't need to exist. If you need to load resources, just pass in the integer resource id directly using
RequestManager.load(Integer)instead. It'll be more correct in terms of caching and more efficient to load. The only reason we're supporting this case is for backwards compatibility.Because this class explicitly only handles resource Uris that are from the application's package, resource uris from other packages are handled by
UriLoader.UriLoaderis even less preferred because it can only handle certain resources from raw resources and it will not apply appropriate theming, RTL or night mode attributes.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.bumptech.glide.load.model.ModelLoader
ModelLoader.LoadData<Data>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ModelLoader.LoadData<DataT>buildLoadData(android.net.Uri uri, int width, int height, Options options)Returns aModelLoader.LoadDatacontaining aDataFetcherrequired to decode the resource represented by this model, as well as a set ofKeysthat identify the data loaded by theDataFetcheras well as an optional list of alternate keys from which equivalent data can be loaded.booleanhandles(android.net.Uri uri)Returns true if the given model is a of a recognized type that this loader can probably load.static ModelLoaderFactory<android.net.Uri,android.content.res.AssetFileDescriptor>newAssetFileDescriptorFactory(android.content.Context context)static ModelLoaderFactory<android.net.Uri,java.io.InputStream>newStreamFactory(android.content.Context context)
-
-
-
Method Detail
-
newStreamFactory
public static ModelLoaderFactory<android.net.Uri,java.io.InputStream> newStreamFactory(android.content.Context context)
-
newAssetFileDescriptorFactory
public static ModelLoaderFactory<android.net.Uri,android.content.res.AssetFileDescriptor> newAssetFileDescriptorFactory(android.content.Context context)
-
buildLoadData
@Nullable public ModelLoader.LoadData<DataT> buildLoadData(@NonNull android.net.Uri uri, int width, int height, @NonNull Options options)
Description copied from interface:ModelLoaderReturns aModelLoader.LoadDatacontaining aDataFetcherrequired to decode the resource represented by this model, as well as a set ofKeysthat identify the data loaded by theDataFetcheras well as an optional list of alternate keys from which equivalent data can be loaded. TheDataFetcherwill not be used if the resource is already cached.Note - If no valid data fetcher can be returned (for example if a model has a null URL), then it is acceptable to return a null data fetcher from this method.
- Specified by:
buildLoadDatain interfaceModelLoader<android.net.Uri,DataT>- Parameters:
uri- The model representing the resource.width- The width in pixels of the view or target the resource will be loaded into, orTarget.SIZE_ORIGINALto indicate that the resource should be loaded at its original width.height- The height in pixels of the view or target the resource will be loaded into, orTarget.SIZE_ORIGINALto indicate that the resource should be loaded at its original height.
-
handles
public boolean handles(@NonNull android.net.Uri uri)Description copied from interface:ModelLoaderReturns true if the given model is a of a recognized type that this loader can probably load.For example, you may want multiple Uri to InputStream loaders. One might handle media store Uris, another might handle asset Uris, and a third might handle file Uris etc.
This method is generally expected to do no I/O and complete quickly, so best effort results are acceptable.
ModelLoadersthat return true from this method may returnnullfromModelLoader.buildLoadData(Object, int, int, Options)- Specified by:
handlesin interfaceModelLoader<android.net.Uri,DataT>
-
-