com.nostra13.universalimageloader.core.assist
Interface ImageLoadingListener

All Known Implementing Classes:
SimpleImageLoadingListener

public interface ImageLoadingListener

Listener for image loading process.
You can use SimpleImageLoadingListener for implementing only needed methods.

Author:
Sergey Tarasevich (nostra13[at]gmail[dot]com)
See Also:
SimpleImageLoadingListener, FailReason

Method Summary
 void onLoadingCancelled()
          Is called when image loading task was cancelled because ImageView was reused in newer task
 void onLoadingComplete(android.graphics.Bitmap loadedImage)
          Is called when image is loaded successfully and displayed in ImageView
 void onLoadingFailed(FailReason failReason)
          Is called when an error was occurred during image loading
 void onLoadingStarted()
          Is called when image loading task was started
 

Method Detail

onLoadingStarted

void onLoadingStarted()
Is called when image loading task was started


onLoadingFailed

void onLoadingFailed(FailReason failReason)
Is called when an error was occurred during image loading


onLoadingComplete

void onLoadingComplete(android.graphics.Bitmap loadedImage)
Is called when image is loaded successfully and displayed in ImageView


onLoadingCancelled

void onLoadingCancelled()
Is called when image loading task was cancelled because ImageView was reused in newer task



Copyright © 2011-2013. All Rights Reserved.