blob: 2335ae29acfb5b041378ea37ad069f577d79f41e [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);
}