| Interface | Description |
|---|---|
| SimpleImageLoader.ImageLoaderProvider |
Interface an activity can implement to provide an ImageLoader to its children fragments.
|
| Class | Description |
|---|---|
| BitmapCache |
This class holds our bitmap caches (memory and disk).
|
| BitmapCache.RetainFragment |
A simple non-UI Fragment that stores a single Object and is retained over configuration
changes.
|
| BitmapImageCache |
This class holds our bitmap caches (memory and disk).
|
| BitmapImageCache.RetainFragment |
A simple non-UI Fragment that stores a single Object and is retained over configuration
changes.
|
| DiskBasedCache |
Cache implementation that caches files directly onto the hard disk in the specified
directory.
|
| DiskLruBasedCache |
Cache implementation that caches files directly onto the hard disk in the specified directory
using DiskLruCache
|
| DiskLruBasedCache.ImageCacheParams |
A holder class that contains cache parameters.
|
| DiskLruImageCache |
Implementation of DiskLruCache by Jake Wharton modified from
http://stackoverflow.com/questions/10185898/using-disklrucache-in-android-4-0-does-not-provide-for-opencache-method
|
| LruImageCache |
Basic implementation of a Bitmap LRU cache to use
with
ImageLoader.ImageLoader(com.android.volley.RequestQueue)
Added by Vinay S Shenoy on 19/5/13 |
| NoCache |
A cache that doesn't.
|
| SimpleImageLoader |
A class that wraps up remote image loading requests using the Volley library combined with a
memory cache.
|