LoadImageCallback.java 276 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package com.wd.common.imageglide; import android.graphics.Bitmap; /** * 加载图片用到的资源回调 * @description: * @author: liyubing * @date :2023/3/10 9:54 * @version 1.0.0 */ public interface LoadImageCallback { void callbackBitmap(Bitmap bitmap); }