Package com.bumptech.glide.load.model
Class DirectResourceLoader<DataT>
java.lang.Object
com.bumptech.glide.load.model.DirectResourceLoader<DataT>
- Type Parameters:
DataT- The type of data thisModelLoaderwill produce (e.g.InputStream,AssetFileDescriptoretc).
- All Implemented Interfaces:
ModelLoader<Integer,DataT>
Loads themed resource ids using
Resources.openRawResource(int) or Resources.openRawResourceFd(int) using the theme from ResourceDrawableDecoder.THEME when
it's available.
Resource ids from other packages are handled by ResourceLoader via ResourceDrawableDecoder and ResourceBitmapDecoder.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.bumptech.glide.load.model.ModelLoader
ModelLoader.LoadData<Data> -
Method Summary
Modifier and TypeMethodDescriptionassetFileDescriptorFactory(Context context) buildLoadData(Integer resourceId, 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.static ModelLoaderFactory<Integer,Drawable> drawableFactory(Context context) booleanReturns true if the given model is a of a recognized type that this loader can probably load.static ModelLoaderFactory<Integer,InputStream> inputStreamFactory(Context context)
-
Method Details
-
inputStreamFactory
-
assetFileDescriptorFactory
public static ModelLoaderFactory<Integer,AssetFileDescriptor> assetFileDescriptorFactory(Context context) -
drawableFactory
-
buildLoadData
public ModelLoader.LoadData<DataT> buildLoadData(@NonNull Integer resourceId, 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<Integer,DataT> - Parameters:
resourceId- 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
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<Integer,DataT>
-