LazyList

General

Category
Free
Tag
Image Loaders
License
MIT License
Min SDK
3 (Android 1.5 Cupcake)
Registered
Jul 5, 2014
Favorites
0
Link
https://github.com/thest1/LazyList
See also
Mateyko
Mural
MaterialImageLoading
Frescomposable
Dali

Additional

Language
Java
Version
N/A
Created
May 29, 2011
Updated
Oct 10, 2018 (Retired)
Owner
Fedor Vlasov (thest1)
Contributor
Fedor Vlasov (thest1)
1
Activity
Badge
Generate
Download
Source code

LazyList

A simple library to display images in Android ListView. Images are being downloaded asynchronously in the background. Images are being cached on SD card and in memory. Can also be used for GridView and just to display images into an ImageView.

Originally published here.

Basic Usage

ImageLoader imageLoader=new ImageLoader(context);
...
imageLoader.DisplayImage(url, imageView);

Don't forget to add the following permissions to your AndroidManifest.xml:

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

Please create only one instance of ImageLoader and reuse it all around your application. This way image caching will be much more efficient.

License

LazyList is released under the MIT license.