Package | Description |
---|---|
com.nostra13.universalimageloader.core | |
com.nostra13.universalimageloader.core.decode |
Modifier and Type | Method and Description |
---|---|
DisplayImageOptions |
DisplayImageOptions.Builder.build()
Builds configured
DisplayImageOptions object |
static DisplayImageOptions |
DisplayImageOptions.createSimple()
Creates options appropriate for single displaying:
View will not be reset before loading
Loaded image will not be cached in memory
Loaded image will not be cached on disk
ImageScaleType.IN_SAMPLE_POWER_OF_2 decoding type will be used
Bitmap.Config#ARGB_8888 bitmap config will be used for image decoding
SimpleBitmapDisplayer will be used for image displaying
These option are appropriate for simple single-use image (from drawables or from Internet) displaying. |
Modifier and Type | Method and Description |
---|---|
DisplayImageOptions.Builder |
DisplayImageOptions.Builder.cloneFrom(DisplayImageOptions options)
Sets all options equal to incoming options
|
ImageLoaderConfiguration.Builder |
ImageLoaderConfiguration.Builder.defaultDisplayImageOptions(DisplayImageOptions defaultDisplayImageOptions)
Sets default display image options for image displaying.
|
void |
ImageLoader.displayImage(String uri,
ImageAware imageAware,
DisplayImageOptions options)
Adds display image task to execution pool.
|
void |
ImageLoader.displayImage(String uri,
ImageAware imageAware,
DisplayImageOptions options,
ImageLoadingListener listener)
Adds display image task to execution pool.
|
void |
ImageLoader.displayImage(String uri,
ImageAware imageAware,
DisplayImageOptions options,
ImageLoadingListener listener,
ImageLoadingProgressListener progressListener)
Adds display image task to execution pool.
|
void |
ImageLoader.displayImage(String uri,
android.widget.ImageView imageView,
DisplayImageOptions options)
Adds display image task to execution pool.
|
void |
ImageLoader.displayImage(String uri,
android.widget.ImageView imageView,
DisplayImageOptions options,
ImageLoadingListener listener)
Adds display image task to execution pool.
|
void |
ImageLoader.displayImage(String uri,
android.widget.ImageView imageView,
DisplayImageOptions options,
ImageLoadingListener listener,
ImageLoadingProgressListener progressListener)
Adds display image task to execution pool.
|
void |
ImageLoader.loadImage(String uri,
DisplayImageOptions options,
ImageLoadingListener listener)
Adds load image task to execution pool.
|
void |
ImageLoader.loadImage(String uri,
ImageSize targetImageSize,
DisplayImageOptions options,
ImageLoadingListener listener)
Adds load image task to execution pool.
|
void |
ImageLoader.loadImage(String uri,
ImageSize targetImageSize,
DisplayImageOptions options,
ImageLoadingListener listener,
ImageLoadingProgressListener progressListener)
Adds load image task to execution pool.
|
android.graphics.Bitmap |
ImageLoader.loadImageSync(String uri,
DisplayImageOptions options)
Loads and decodes image synchronously.
NOTE: ImageLoader.init(ImageLoaderConfiguration) method must be called before this method call |
android.graphics.Bitmap |
ImageLoader.loadImageSync(String uri,
ImageSize targetImageSize,
DisplayImageOptions options)
Loads and decodes image synchronously.
NOTE: ImageLoader.init(ImageLoaderConfiguration) method must be called before this method call |
Constructor and Description |
---|
ImageDecodingInfo(String imageKey,
String imageUri,
String originalImageUri,
ImageSize targetSize,
ViewScaleType viewScaleType,
ImageDownloader downloader,
DisplayImageOptions displayOptions) |
Copyright © 2011-2015. All Rights Reserved.