Popularity
7.8
Stable
Activity
0.0
Stable
1,197
97
502

Code Quality Rank: L5
Programming language: Java
License: MIT License

LazyList alternatives and similar packages

Based on the "ListView/ScrollView Widget" category.
Alternatively, view LazyList alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of LazyList or a related project?

Add another 'ListView/ScrollView Widget' Package

README

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.


*Note that all licence references and agreements mentioned in the LazyList README section above are relevant to that project's source code only.