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