| Package | Description |
|---|---|
| com.android.volley.toolbox |
| Modifier and Type | Method and Description |
|---|---|
static ImageLoader.ImageListener |
ImageLoader.getImageListener(android.widget.ImageView view,
int defaultImageResId,
int errorImageResId)
The default implementation of ImageListener which handles basic functionality
of showing a default image until the network response is received, at which point
it will switch to either the actual image or the error image.
|
| Modifier and Type | Method and Description |
|---|---|
ImageLoader.ImageContainer |
ImageLoader.get(String requestUrl,
ImageLoader.ImageListener listener)
Returns an ImageContainer for the requested URL.
|
ImageLoader.ImageContainer |
ImageLoader.get(String requestUrl,
ImageLoader.ImageListener imageListener,
int maxWidth,
int maxHeight)
Issues a bitmap request with the given URL if that image is not available
in the cache, and returns a bitmap container that contains all of the data
relating to the request (as well as the default image if the requested
image is not available).
|
ImageLoader.ImageContainer |
ImageLoader.get(String requestUrl,
ImageLoader.ImageListener imageListener,
int maxWidth,
int maxHeight,
android.widget.ImageView.ScaleType scaleType)
Issues a bitmap request with the given URL if that image is not available
in the cache, and returns a bitmap container that contains all of the data
relating to the request (as well as the default image if the requested
image is not available).
|
ImageLoader.ImageContainer |
ImageLoader.get(String requestUrl,
ImageLoader.ImageListener imageListener,
int maxWidth,
int maxHeight,
android.widget.ImageView.ScaleType scaleType,
ImageRequest.Transformation transformation)
Issues a bitmap request with the given URL if that image is not available
in the cache, and returns a bitmap container that contains all of the data
relating to the request (as well as the default image if the requested
image is not available).
|
| Constructor and Description |
|---|
ImageContainer(android.graphics.Bitmap bitmap,
String requestUrl,
String cacheKey,
ImageLoader.ImageListener listener)
Constructs a BitmapContainer object.
|
Copyright © 2015. All rights reserved.