OnImageEventListener

public interface OnImageEventListener

An event listener, allowing subclasses and activities to be notified of significant events.

Inheritors

Functions

Link copied to clipboard
public abstract void onImageLoaded()
Called when the full size image is ready.
Link copied to clipboard
public abstract void onImageLoadError(Exception e)
Indicates an error initiliasing the decoder when using a tiling, or when loading the full size bitmap when tiling is disabled.
Link copied to clipboard
public abstract void onPreviewLoadError(Exception e)
Called when a preview image could not be loaded.
Link copied to clipboard
public abstract void onPreviewReleased()
Called when a bitmap set using ImageSource.cachedBitmap is no longer being used by the View.
Link copied to clipboard
public abstract void onReady()
Called when the dimensions of the image and view are known, and either a preview image, the full size image, or base layer tiles are loaded.
Link copied to clipboard
public abstract void onTileLoadError(Exception e)
Called when an image tile could not be loaded.