Class MediaStoreVideoThumbLoader

  • All Implemented Interfaces:
    ModelLoader<android.net.Uri,​java.io.InputStream>

    public class MediaStoreVideoThumbLoader
    extends java.lang.Object
    implements ModelLoader<android.net.Uri,​java.io.InputStream>
    Loads InputStreams from media store video Uris that point to pre-generated thumbnails for those Uris in the media store.

    If VideoDecoder.TARGET_FRAME is set with a non-null value that is not equal to VideoDecoder.DEFAULT_FRAME, this loader will always return null. The media store does not use a defined frame to generate the thumbnail, so we cannot accurately fulfill requests for specific frames.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  MediaStoreVideoThumbLoader.Factory
      Loads InputStreams from media store image Uris that point to pre-generated thumbnails for those Uris in the media store.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      ModelLoader.LoadData<java.io.InputStream> buildLoadData​(android.net.Uri model, int width, int height, 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.
      boolean handles​(android.net.Uri model)
      Returns true if the given model is a of a recognized type that this loader can probably load.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MediaStoreVideoThumbLoader

        public MediaStoreVideoThumbLoader​(android.content.Context context)
    • Method Detail

      • buildLoadData

        @Nullable
        public ModelLoader.LoadData<java.io.InputStream> buildLoadData​(@NonNull
                                                                       android.net.Uri model,
                                                                       int width,
                                                                       int height,
                                                                       @NonNull
                                                                       Options options)
        Description copied from interface: ModelLoader
        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.

        Specified by:
        buildLoadData in interface ModelLoader<android.net.Uri,​java.io.InputStream>
        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

        public boolean handles​(@NonNull
                               android.net.Uri model)
        Description copied from interface: ModelLoader
        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 ModelLoader.buildLoadData(Object, int, int, Options)

        Specified by:
        handles in interface ModelLoader<android.net.Uri,​java.io.InputStream>