- 授权协议: Apache
- 开发语言: Java
- 操作系统: Android
- 软件首页: https://github.com/nostra13/Android-Universal-Image-Loader
- 软件文档: https://github.com/nostra13/Android-Universal-Image-Loader/blob/master/README.md
- 官方下载: https://github.com/nostra13/Android-Universal-Image-Loader/archive/master.zip
软件介绍
Universal ImageLoader是最早开源的 Android 图片缓存库, 强大的缓存机制。
功能特点:
支持多线程加载图片(同步或者异步加载)
具有很高的定制性
每一张图片都有很多备用资源(原始图片、内存缓存、Bitmap等 )
图片能缓存在外设的SD卡内
可以监听到图片加载状态相关信息
图片加载流程图:
使用示例:
ImageLoader imageLoader = ImageLoader.getInstance(); // Get singleton instance
// Load image, decode it to Bitmap and display Bitmap in ImageView (or any other view // which implements ImageAware interface) imageLoader.displayImage(imageUri, imageView);
// Load image, decode it to Bitmap and return Bitmap to callback
imageLoader.loadImage(imageUri, new SimpleImageLoadingListener() {
@Override
public void onLoadingComplete(String imageUri, View view, Bitmap loadedImage) {
// Do whatever you want with Bitmap
}
});// Load image, decode it to Bitmap and return Bitmap synchronously Bitmap bmp = imageLoader.loadImageSync(imageUri);
The Web Designer's Idea Book, Vol. 2
Patrick McNeil / How / 2010-9-19 / USD 30.00
Web Design Inspiration at a Glance Volume 2 of The Web Designer's Idea Book includes more than 650 new websites arranged thematically, so you can easily find inspiration for your work. Auth......一起来看看 《The Web Designer's Idea Book, Vol. 2》 这本书的介绍吧!
