OnPartialImageListener
interface OnPartialImageListener
| android.graphics.ImageDecoder.OnPartialImageListener | 
Interface for inspecting a DecodeException and potentially preventing it from being thrown. 
If an instance is passed to setOnPartialImageListener, a DecodeException that would otherwise have been thrown can be inspected inside onPartialImage. If onPartialImage returns true, a partial image will be created.
Summary
| Public methods | |
|---|---|
| abstract Boolean | onPartialImage(exception: ImageDecoder.DecodeException)Called by  | 
Public methods
onPartialImage
abstract fun onPartialImage(exception: ImageDecoder.DecodeException): Boolean
Called by ImageDecoder when there is only a partial image to display. 
If decoding is interrupted after having decoded a partial image, this method will be called. The implementation can inspect the DecodeException and optionally finish the rest of the decode creation process to create a partial Drawable or Bitmap.
| Parameters | |
|---|---|
| exception | ImageDecoder.DecodeException: exception containing information about the decode interruption. This value cannot be null. | 
| Return | |
|---|---|
| Boolean | trueto create and return aDrawableorBitmapwith partial data.false(which is the default) to abort the decode and throwe. Any undecoded lines in the image will be blank. | 
