-
public interface BitmapCallbackReceives callbacks about a bitmap decoding operation.
-
-
Method Summary
Modifier and Type Method Description abstract voidonBitmapReady(@Nullable() Bitmap bitmap)Notifies that the bitmap was successfully decoded.This is run on the UI thread. -
-
Method Detail
-
onBitmapReady
@UiThread() abstract void onBitmapReady(@Nullable() Bitmap bitmap)
Notifies that the bitmap was successfully decoded.This is run on the UI thread.Returns a null object if a OutOfMemoryError was encountered.
- Parameters:
bitmap- decoded bitmap, or null
-
-
-
-