Load an image, decode it into a bitmap, and display the bitmap in an ImageView (or any other view which implements the ImageAware interface):
ImageLoader.getInstance().displayImage(imageUri, imageView);
Load an image, decode it into a bitmap, and return the bitmap to a callback:
ImageLo...