com.nostra13.universalimageloader.core.display
Interface BitmapDisplayer
- All Known Implementing Classes:
- FadeInBitmapDisplayer, RoundedBitmapDisplayer, RoundedVignetteBitmapDisplayer, SimpleBitmapDisplayer
public interface BitmapDisplayer
Displays Bitmap in ImageAware. Implementations can
apply some changes to Bitmap or any animation for displaying Bitmap.
Implementations have to be thread-safe.
- Since:
- 1.5.6
- Author:
- Sergey Tarasevich (nostra13[at]gmail[dot]com)
- See Also:
ImageAware,
LoadedFrom
display
void display(android.graphics.Bitmap bitmap,
ImageAware imageAware,
LoadedFrom loadedFrom)
- Displays bitmap in
ImageAware.
NOTE: This method is called on UI thread so it's strongly recommended not to do any heavy work in it.
- Parameters:
bitmap - Source bitmapimageAware - Image aware view to
display BitmaploadedFrom - Source of loaded image
Copyright © 2011-2014. All Rights Reserved.