-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Library Map
nostra13 edited this page Feb 9, 2013
·
10 revisions
ImageLoader |
| - init(ImageLoaderConfiguration)
| - isInited()
| - displayImage(...)
| - loadImage(...)
| - getMemoryCache()
| - clearMemoryCache()
| - getDiscCache()
| - clearDiscCache()
| - denyNetworkDownloads()
| - allowNetworkDownloads()
| - pause()
| - resume()
| - stop()
| - getLoadingUriForView(ImageView)
| - cancelDisplayTask(ImageView)
MemoryCacheUtil |
| - findCachedBitmapsForImageUri(...)
| - findCacheKeysForImageUri(...)
| - removeFromCache(...)
StorageUtils |
| - getCacheDirectory(Context)
| - getIndividualCacheDirectory(Context)
| - getOwnCacheDirectory(Context, String)
ImageScaleType | NONE
| IN_SAMPLE_POWER_OF_2
| IN_SAMPLE_INT
| EXACTLY
| EXACTLY_STRETCHED
QueueProcessingType | FIFO
| LIFO
FailReason | IO_ERROR
| OUT_OF_MEMORY
| UNSUPPORTED_URI_SCHEME
| NETWORK_DENIED
| UNKNOWN
ImageLoadingListener |
| | - onLoadingStarted(String, View)
| | - onLoadingFailed(String, View, FailReason)
| | - onLoadingComplete(String, View, Bitmap)
| | - onLoadingCancelled(String, View)
|---- SimpleImageLoadingListener
ImageDownloader
|---- BaseImageDownloader
|---- HttpClientImageDownloader
|---- NetworkDeniedImageDownloader
BitmapDisplayer
|---- SimpleBitmapDisplayer
|---- FadeInBitmapDisplayer
|---- RoundedBitmapDisplayer
|---- FakeBitmapDisplayer
DiscCacheAware
|---- BaseDiscCache
|---- UnlimitedDiscCache
|---- LimitedDiscCache
| |---- TotalSizeLimitedDiscCache
| |---- FileCountLimitedDiscCache
|---- LimitedAgeDiscCache
MemoryCacheAware
|---- BaseMemoryCache
| |---- WeakMemoryCache
| |---- LimitedMemoryCache
| |---- UsingFreqLimitedMemoryCache
| |---- LRULimitedMemoryCache
| |---- LargestLimitedMemoryCache
| |---- FIFOLimitedMemoryCache
|---- LimitedAgeMemoryCache
FileNameGenerator
|---- HashCodeFileNameGenerator
|---- Md5FileNameGenerator
PauseOnScrollListener