Package 

Interface BitmapCallback


  • 
    public interface BitmapCallback
    
                        

    Receives callbacks about a bitmap decoding operation.

    • Method Summary

      Modifier and Type Method Description
      abstract void onBitmapReady(@Nullable() Bitmap bitmap) Notifies that the bitmap was successfully decoded.This is run on the UI thread.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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