Skip to content
jason1peng edited this page Dec 7, 2012 · 8 revisions

Welcome to image manager, this is a library which provide simple way to download image in android. It provides some common image requirements such as resize, round corner and blending. How simple? Watch this:

ImageView iv = (ImageView) convertView.findViewById(R.id.thumbnail);
ImageAttribute attr = new ImageAttribute(iv);
mImageManager.getImage(url, attr);

You don't need to worry about other details. Just tell the library link, view and attributes(optional). ImageView will auto show the target resource after downloaded. The next time you run this code with same parameters, image manager won't download it again but load from local cache file instead(much more faster).

Try this! If there are any problems please tell me or send a pull request.

Hope this library could help you :)

Clone this wiki locally