packagecom.yidianling.consultant.preview;importandroid.graphics.drawable.Drawable;importandroidx.annotation.Nullable;/** * Deprecated: 图片加载回调状态接口 * * @author rainb */publicinterfaceMySimpleTarget{/** * Callback when an image has been successfully loaded. * <p> * <strong>Note:</strong> You must not recycle the bitmap. */voidonResourceReady();/** * Callback indicating the image could not be successfully loaded. * * @param errorRes 内容 */voidonLoadFailed(@NullableDrawableerrorRes);}