Interface ModelLoader<Model,​Data>

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Interface Description
      static class  ModelLoader.LoadData<Data>
      Contains a set of Keys identifying the source of the load, alternate cache keys pointing to equivalent data, and a DataFetcher that can be used to fetch data not found in cache.
    • Method Detail

      • buildLoadData

        @Nullable
        ModelLoader.LoadData<Data> buildLoadData​(@NonNull
                                                 Model model,
                                                 int width,
                                                 int height,
                                                 @NonNull
                                                 Options options)
        Returns a ModelLoader.LoadData containing a DataFetcher required to decode the resource represented by this model, as well as a set of Keys that identify the data loaded by the DataFetcher as well as an optional list of alternate keys from which equivalent data can be loaded. The DataFetcher will 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.

        Parameters:
        model - The model representing the resource.
        width - The width in pixels of the view or target the resource will be loaded into, or Target.SIZE_ORIGINAL to 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, or Target.SIZE_ORIGINAL to indicate that the resource should be loaded at its original height.
      • handles

        boolean handles​(@NonNull
                        Model model)
        Returns 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. ModelLoaders that return true from this method may return null from buildLoadData(Object, int, int, Options)