Package | Description |
---|---|
com.nostra13.universalimageloader.core |
Modifier and Type | Method and Description |
---|---|
ImageLoaderConfiguration |
ImageLoaderConfiguration.Builder.build()
Builds configured
ImageLoaderConfiguration object |
static ImageLoaderConfiguration |
ImageLoaderConfiguration.createDefault(android.content.Context context)
Creates default configuration for
ImageLoader Default values: maxImageWidthForMemoryCache = device's screen width maxImageHeightForMemoryCache = device's screen height maxImageWidthForDikcCache = unlimited maxImageHeightForDiskCache = unlimited threadPoolSize = this
threadPriority = this
allow to cache different sizes of image in memory
memoryCache = DefaultConfigurationFactory.createMemoryCache(android.content.Context, int)
diskCache = UnlimitedDiskCache
imageDownloader = DefaultConfigurationFactory.createImageDownloader(Context)
imageDecoder = DefaultConfigurationFactory.createImageDecoder(boolean)
diskCacheFileNameGenerator = DefaultConfigurationFactory.createFileNameGenerator()
defaultDisplayImageOptions = Simple options
tasksProcessingOrder = QueueProcessingType.FIFO
detailed logging disabled
|
Modifier and Type | Method and Description |
---|---|
void |
ImageLoader.init(ImageLoaderConfiguration configuration)
Initializes ImageLoader instance with configuration.
If configurations was set before ( ImageLoader.isInited() == true) then this method does nothing.To force initialization with new configuration you should destroy ImageLoader at first. |
Copyright © 2011-2015. All Rights Reserved.