public static interface

ImageLoader.ImageCache

com.android.volley.toolbox.ImageLoader.ImageCache

Class Overview

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.

Summary

Public Methods
abstract Bitmap getBitmap(String url)
abstract void putBitmap(String url, Bitmap bitmap)

Public Methods

public abstract Bitmap getBitmap (String url)

public abstract void putBitmap (String url, Bitmap bitmap)