Uses of Class
com.nostra13.universalimageloader.core.DisplayImageOptions

Packages that use DisplayImageOptions
com.nostra13.universalimageloader.core   
com.nostra13.universalimageloader.core.decode   
 

Uses of DisplayImageOptions in com.nostra13.universalimageloader.core
 

Methods in com.nostra13.universalimageloader.core that return DisplayImageOptions
 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.

 

Methods in com.nostra13.universalimageloader.core with parameters of type DisplayImageOptions
 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.
 android.graphics.Bitmap ImageLoader.loadImageSync(String uri, ImageSize targetImageSize, DisplayImageOptions options)
          Loads and decodes image synchronously.
 

Uses of DisplayImageOptions in com.nostra13.universalimageloader.core.decode
 

Constructors in com.nostra13.universalimageloader.core.decode with parameters of type DisplayImageOptions
ImageDecodingInfo(String imageKey, String imageUri, String originalImageUri, ImageSize targetSize, ViewScaleType viewScaleType, ImageDownloader downloader, DisplayImageOptions displayOptions)
           
 



Copyright © 2011-2014. All Rights Reserved.