com.nostra13.universalimageloader.core.assist
Class SyncImageLoadingListener

java.lang.Object
  extended by com.nostra13.universalimageloader.core.assist.SimpleImageLoadingListener
      extended by com.nostra13.universalimageloader.core.assist.SyncImageLoadingListener
All Implemented Interfaces:
ImageLoadingListener

public class SyncImageLoadingListener
extends SimpleImageLoadingListener

Listener which is designed for synchronous image loading.

Since:
1.9.0
Author:
Sergey Tarasevich (nostra13[at]gmail[dot]com)

Constructor Summary
SyncImageLoadingListener()
           
 
Method Summary
 android.graphics.Bitmap getLoadedBitmap()
           
 void onLoadingComplete(java.lang.String imageUri, android.view.View view, android.graphics.Bitmap loadedImage)
          Is called when image is loaded successfully (and displayed in View if one was specified)
 
Methods inherited from class com.nostra13.universalimageloader.core.assist.SimpleImageLoadingListener
onLoadingCancelled, onLoadingFailed, onLoadingStarted
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SyncImageLoadingListener

public SyncImageLoadingListener()
Method Detail

onLoadingComplete

public void onLoadingComplete(java.lang.String imageUri,
                              android.view.View view,
                              android.graphics.Bitmap loadedImage)
Description copied from interface: ImageLoadingListener
Is called when image is loaded successfully (and displayed in View if one was specified)

Specified by:
onLoadingComplete in interface ImageLoadingListener
Overrides:
onLoadingComplete in class SimpleImageLoadingListener
Parameters:
imageUri - Loaded image URI
view - View for image. Can be null.
loadedImage - Bitmap of loaded and decoded image

getLoadedBitmap

public android.graphics.Bitmap getLoadedBitmap()


Copyright © 2011-2013. All Rights Reserved.