Uses of Interface
com.nostra13.universalimageloader.cache.memory.MemoryCacheAware

Packages that use MemoryCacheAware
com.nostra13.universalimageloader.cache.memory   
com.nostra13.universalimageloader.cache.memory.impl   
com.nostra13.universalimageloader.core   
com.nostra13.universalimageloader.core.assist   
 

Uses of MemoryCacheAware in com.nostra13.universalimageloader.cache.memory
 

Classes in com.nostra13.universalimageloader.cache.memory that implement MemoryCacheAware
 class BaseMemoryCache<K,V>
          Base memory cache.
 class LimitedMemoryCache<K,V>
          Limited cache.
 

Uses of MemoryCacheAware in com.nostra13.universalimageloader.cache.memory.impl
 

Classes in com.nostra13.universalimageloader.cache.memory.impl that implement MemoryCacheAware
 class FIFOLimitedMemoryCache
          Limited bitmap cache.
 class FuzzyKeyMemoryCache<K,V>
          Decorator for MemoryCacheAware.
 class LargestLimitedMemoryCache
          Limited bitmap cache.
 class LimitedAgeMemoryCache<K,V>
          Decorator for MemoryCacheAware.
 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 MemoryCacheAware
FuzzyKeyMemoryCache(MemoryCacheAware<K,V> cache, java.util.Comparator<K> keyComparator)
           
LimitedAgeMemoryCache(MemoryCacheAware<K,V> cache, long maxAge)
           
 

Uses of MemoryCacheAware in com.nostra13.universalimageloader.core
 

Methods in com.nostra13.universalimageloader.core that return MemoryCacheAware
static MemoryCacheAware<java.lang.String,android.graphics.Bitmap> DefaultConfigurationFactory.createMemoryCache(int memoryCacheSize)
          Creates default implementation of MemoryCacheAware depends on incoming parameters:
LruMemoryCache (for API >= 9) or LRULimitedMemoryCache (for API < 9).
 MemoryCacheAware<java.lang.String,android.graphics.Bitmap> ImageLoader.getMemoryCache()
          Returns memory cache
 

Methods in com.nostra13.universalimageloader.core with parameters of type MemoryCacheAware
 ImageLoaderConfiguration.Builder ImageLoaderConfiguration.Builder.memoryCache(MemoryCacheAware<java.lang.String,android.graphics.Bitmap> memoryCache)
          Sets memory cache for bitmaps.
 

Uses of MemoryCacheAware in com.nostra13.universalimageloader.core.assist
 

Methods in com.nostra13.universalimageloader.core.assist with parameters of type MemoryCacheAware
static java.util.List<android.graphics.Bitmap> MemoryCacheUtil.findCachedBitmapsForImageUri(java.lang.String imageUri, MemoryCacheAware<java.lang.String,android.graphics.Bitmap> memoryCache)
          Searches all bitmaps in memory cache which are corresponded to incoming URI.
static java.util.List<java.lang.String> MemoryCacheUtil.findCacheKeysForImageUri(java.lang.String imageUri, MemoryCacheAware<java.lang.String,android.graphics.Bitmap> memoryCache)
          Searches all keys in memory cache which are corresponded to incoming URI.
static void MemoryCacheUtil.removeFromCache(java.lang.String imageUri, MemoryCacheAware<java.lang.String,android.graphics.Bitmap> memoryCache)
          Removes from memory cache all images for incoming URI.
 



Copyright © 2011-2013. All Rights Reserved.