# LazyList **Repository Path**: soats/LazyList ## Basic Information - **Project Name**: LazyList - **Description**: Lazy load of images in Android - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-12 - **Last Updated**: 2024-06-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 ``` java ImageLoader imageLoader=new ImageLoader(context); ... imageLoader.DisplayImage(url, imageView); ``` Don't forget to add the following permissions to your AndroidManifest.xml: 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.