com.android.volley.toolbox
Interface ImageLoader.ImageCache

Enclosing class:
ImageLoader

public static interface ImageLoader.ImageCache

Simple cache adapter interface. If provided to the ImageLoader, it will be used as an L1 cache before dispatch to Volley. Implementations must not block. Implementation with an LruCache is recommended.


Method Summary
 Bitmap getBitmap(String url)
           
 void putBitmap(String url, Bitmap bitmap)
           
 

Method Detail

getBitmap

Bitmap getBitmap(String url)

putBitmap

void putBitmap(String url,
               Bitmap bitmap)