Modifier and Type | Class and Description |
---|---|
class |
BaseDiskCache
Base disk cache.
|
class |
LimitedAgeDiskCache
Cache which deletes files which were loaded more than defined time.
|
class |
UnlimitedDiskCache
Default implementation of disk cache.
|
Modifier and Type | Class and Description |
---|---|
class |
LruDiskCache
Disk cache based on "Least-Recently Used" principle.
|
Modifier and Type | Method and Description |
---|---|
static DiskCache |
DefaultConfigurationFactory.createDiskCache(android.content.Context context,
FileNameGenerator diskCacheFileNameGenerator,
long diskCacheSize,
int diskCacheFileCount)
Creates default implementation of
DiskCache depends on incoming parameters |
DiskCache |
ImageLoader.getDiscCache()
Deprecated.
Use
ImageLoader.getDiskCache() instead |
DiskCache |
ImageLoader.getDiskCache()
Returns disk cache
|
Modifier and Type | Method and Description |
---|---|
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.discCache(DiskCache diskCache)
|
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.diskCache(DiskCache diskCache)
Sets disk cache for images.
Default value - UnlimitedDiskCache . |
Modifier and Type | Method and Description |
---|---|
static File |
DiskCacheUtils.findInCache(String imageUri,
DiskCache diskCache)
Returns
File of cached image or null if image was not cached in disk cache |
static boolean |
DiskCacheUtils.removeFromCache(String imageUri,
DiskCache diskCache)
Removed cached image file from disk cache (if image was cached in disk cache before)
|
Copyright © 2011-2015. All Rights Reserved.