Uses of Class
com.nostra13.universalimageloader.core.ImageLoaderConfiguration.Builder

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(DiscCacheAware discCache)
          Sets disc cache for images.
 ImageLoaderConfiguration.Builder ImageLoaderConfiguration.Builder.discCacheExtraOptions(int maxImageWidthForDiscCache, int maxImageHeightForDiscCache, android.graphics.Bitmap.CompressFormat compressFormat, int compressQuality)
          Sets options for resizing/compressing of downloaded images before saving to disc cache.
 ImageLoaderConfiguration.Builder ImageLoaderConfiguration.Builder.discCacheFileCount(int maxFileCount)
          Sets maximum file count in disc cache directory.
 ImageLoaderConfiguration.Builder ImageLoaderConfiguration.Builder.discCacheFileNameGenerator(FileNameGenerator fileNameGenerator)
          Sets name generator for files cached in disc cache.
 ImageLoaderConfiguration.Builder ImageLoaderConfiguration.Builder.discCacheSize(int maxCacheSize)
          Sets maximum disc cache size for images (in bytes).
 ImageLoaderConfiguration.Builder ImageLoaderConfiguration.Builder.enableLogging()
          Enabled detail logging of ImageLoader work
 ImageLoaderConfiguration.Builder ImageLoaderConfiguration.Builder.imageDownloader(ImageDownloader imageDownloader)
          Sets utility which will be responsible for downloading of image.
 ImageLoaderConfiguration.Builder ImageLoaderConfiguration.Builder.memoryCache(MemoryCacheAware<java.lang.String,android.graphics.Bitmap> 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.offOutOfMemoryHandling()
          ImageLoader try clean memory and re-display image it self when OutOfMemoryError occurs.
 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.
 



Copyright © 2011-2013. All Rights Reserved.