• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.airbnb.lottie;
2 
3 import android.graphics.Bitmap;
4 
5 import androidx.annotation.Nullable;
6 
7 /**
8  * Delegate to handle the loading of bitmaps that are not packaged in the assets of your app.
9  *
10  * @see LottieDrawable#setImageAssetDelegate(ImageAssetDelegate)
11  */
12 public interface ImageAssetDelegate {
fetchBitmap(LottieImageAsset asset)13   @Nullable Bitmap fetchBitmap(LottieImageAsset asset);
14 }
15