blob: 659a0144ae9911328eb5378d2006a25f78d196a2 [file] [log] [blame]
package com.airbnb.lottie;
import android.graphics.Bitmap;
import androidx.annotation.Nullable;
/**
* Delegate to handle the loading of bitmaps that are not packaged in the assets of your app.
*
* @see LottieDrawable#setImageAssetDelegate(ImageAssetDelegate)
*/
public interface ImageAssetDelegate {
@Nullable Bitmap fetchBitmap(LottieImageAsset asset);
}