com.android.volley.toolbox
クラス ImageLoader.ImageContainer

java.lang.Object
  上位を拡張 com.android.volley.toolbox.ImageLoader.ImageContainer
含まれているクラス:
ImageLoader

public class ImageLoader.ImageContainer
extends java.lang.Object

Container object for all of the data surrounding an image request.


コンストラクタの概要
ImageLoader.ImageContainer(Bitmap bitmap, java.lang.String requestUrl, java.lang.String cacheKey, ImageLoader.ImageListener listener)
          Constructs a BitmapContainer object.
 
メソッドの概要
 void cancelRequest()
          Releases interest in the in-flight request (and cancels it if no one else is listening).
 Bitmap getBitmap()
          Returns the bitmap associated with the request URL if it has been loaded, null otherwise.
 java.lang.String getRequestUrl()
          Returns the requested URL for this container.
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

ImageLoader.ImageContainer

public ImageLoader.ImageContainer(Bitmap bitmap,
                                  java.lang.String requestUrl,
                                  java.lang.String cacheKey,
                                  ImageLoader.ImageListener listener)
Constructs a BitmapContainer object.

パラメータ:
bitmap - The final bitmap (if it exists).
requestUrl - The requested URL for this container.
cacheKey - The cache key that identifies the requested URL for this container.
メソッドの詳細

cancelRequest

public void cancelRequest()
Releases interest in the in-flight request (and cancels it if no one else is listening).


getBitmap

public Bitmap getBitmap()
Returns the bitmap associated with the request URL if it has been loaded, null otherwise.


getRequestUrl

public java.lang.String getRequestUrl()
Returns the requested URL for this container.