|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ImageLoaderConfiguration.Builder | |
---|---|
com.nostra13.universalimageloader.core |
Uses of ImageLoaderConfiguration.Builder in com.nostra13.universalimageloader.core |
---|
Methods in com.nostra13.universalimageloader.core that return ImageLoaderConfiguration.Builder | |
---|---|
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.defaultDisplayImageOptions(DisplayImageOptions defaultDisplayImageOptions)
Sets default display image options for image displaying. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.denyCacheImageMultipleSizesInMemory()
When you display an image in a small ImageView and later you try to display
this image (from identical URI) in a larger ImageView so decoded image of
bigger size will be cached in memory as a previous decoded image of smaller size. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.discCache(DiskCache diskCache)
Deprecated. Use diskCache(com.nostra13.universalimageloader.cache.disc.DiskCache) |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.discCacheExtraOptions(int maxImageWidthForDiskCache,
int maxImageHeightForDiskCache,
BitmapProcessor processorForDiskCache)
Deprecated. Use diskCacheExtraOptions(int, int, com.nostra13.universalimageloader.core.process.BitmapProcessor)
instead |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.discCacheFileCount(int maxFileCount)
Deprecated. Use diskCacheFileCount(int) instead |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.discCacheFileNameGenerator(FileNameGenerator fileNameGenerator)
Deprecated. Use diskCacheFileNameGenerator(com.nostra13.universalimageloader.cache.disc.naming.FileNameGenerator) |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.discCacheSize(int maxCacheSize)
Deprecated. Use diskCacheSize(int) instead |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.diskCache(DiskCache diskCache)
Sets disk cache for images. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.diskCacheExtraOptions(int maxImageWidthForDiskCache,
int maxImageHeightForDiskCache,
BitmapProcessor processorForDiskCache)
Sets options for resizing/compressing of downloaded images before saving to disk cache. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.diskCacheFileCount(int maxFileCount)
Sets maximum file count in disk cache directory. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.diskCacheFileNameGenerator(FileNameGenerator fileNameGenerator)
Sets name generator for files cached in disk cache. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.diskCacheSize(int maxCacheSize)
Sets maximum disk cache size for images (in bytes). |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.imageDecoder(ImageDecoder imageDecoder)
Sets utility which will be responsible for decoding of image stream. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.imageDownloader(ImageDownloader imageDownloader)
Sets utility which will be responsible for downloading of image. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.memoryCache(MemoryCache memoryCache)
Sets memory cache for bitmaps . |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.memoryCacheExtraOptions(int maxImageWidthForMemoryCache,
int maxImageHeightForMemoryCache)
Sets options for memory cache |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.memoryCacheSize(int memoryCacheSize)
Sets maximum memory cache size for bitmaps (in bytes). |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.memoryCacheSizePercentage(int availableMemoryPercent)
Sets maximum memory cache size (in percent of available app memory) for bitmaps . |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.taskExecutor(Executor executor)
Sets custom executor for tasks of loading and displaying images. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.taskExecutorForCachedImages(Executor executorForCachedImages)
Sets custom executor for tasks of displaying cached on disk images (these tasks are executed quickly so UIL prefer to use separate executor for them). |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.tasksProcessingOrder(QueueProcessingType tasksProcessingType)
Sets type of queue processing for tasks for loading and displaying images. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.threadPoolSize(int threadPoolSize)
Sets thread pool size for image display tasks. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.threadPriority(int threadPriority)
Sets the priority for image loading threads. |
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.writeDebugLogs()
Enables detail logging of ImageLoader work. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |