blob: 69057048c1271552a7f484b0b33dc20e648004fd [file] [log] [blame]
package com.airbnb.lottie;
import android.graphics.Bitmap;
import android.support.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);
}