-
public interface OnLoadBigImageListener
-
-
Method Summary
Modifier and Type Method Description abstract voidonLoadImageSuccess(Drawable drawable, String filePath)加载图片成功回调 abstract voidonLoadImageFailed()加载图片失败回调 -
-
Method Detail
-
onLoadImageSuccess
abstract void onLoadImageSuccess(Drawable drawable, String filePath)
加载图片成功回调
- Parameters:
drawable- 这个图必须保证不可以OOM,如果是超大图要处理好filePath- 图片下载的本地路径
-
onLoadImageFailed
abstract void onLoadImageFailed()
加载图片失败回调
-
-
-
-