|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of MemoryCache in com.nostra13.universalimageloader.cache.memory |
---|
Classes in com.nostra13.universalimageloader.cache.memory that implement MemoryCache | |
---|---|
class |
BaseMemoryCache
Base memory cache. |
class |
LimitedMemoryCache
Limited cache. |
Uses of MemoryCache in com.nostra13.universalimageloader.cache.memory.impl |
---|
Classes in com.nostra13.universalimageloader.cache.memory.impl that implement MemoryCache | |
---|---|
class |
FIFOLimitedMemoryCache
Limited bitmap cache. |
class |
FuzzyKeyMemoryCache
Decorator for MemoryCache . |
class |
LargestLimitedMemoryCache
Limited bitmap cache. |
class |
LimitedAgeMemoryCache
Decorator for MemoryCache . |
class |
LRULimitedMemoryCache
Limited bitmap cache. |
class |
LruMemoryCache
A cache that holds strong references to a limited number of Bitmaps. |
class |
UsingFreqLimitedMemoryCache
Limited bitmap cache. |
class |
WeakMemoryCache
Memory cache with weak references to bitmaps NOTE: This cache uses only weak references for stored Bitmaps. |
Constructors in com.nostra13.universalimageloader.cache.memory.impl with parameters of type MemoryCache | |
---|---|
FuzzyKeyMemoryCache(MemoryCache cache,
Comparator<String> keyComparator)
|
|
LimitedAgeMemoryCache(MemoryCache cache,
long maxAge)
|
Uses of MemoryCache in com.nostra13.universalimageloader.core |
---|
Methods in com.nostra13.universalimageloader.core that return MemoryCache | |
---|---|
static MemoryCache |
DefaultConfigurationFactory.createMemoryCache(int memoryCacheSize)
Creates default implementation of MemoryCache - LruMemoryCache Default cache size = 1/8 of available app memory. |
MemoryCache |
ImageLoader.getMemoryCache()
Returns memory cache |
Methods in com.nostra13.universalimageloader.core with parameters of type MemoryCache | |
---|---|
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.memoryCache(MemoryCache memoryCache)
Sets memory cache for bitmaps . |
Uses of MemoryCache in com.nostra13.universalimageloader.utils |
---|
Methods in com.nostra13.universalimageloader.utils with parameters of type MemoryCache | |
---|---|
static List<android.graphics.Bitmap> |
MemoryCacheUtils.findCachedBitmapsForImageUri(String imageUri,
MemoryCache memoryCache)
Searches all bitmaps in memory cache which are corresponded to incoming URI. |
static List<String> |
MemoryCacheUtils.findCacheKeysForImageUri(String imageUri,
MemoryCache memoryCache)
Searches all keys in memory cache which are corresponded to incoming URI. |
static void |
MemoryCacheUtils.removeFromCache(String imageUri,
MemoryCache memoryCache)
Removes from memory cache all images for incoming URI. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |