Package com.android.volley.toolbox

Interface Summary
Authenticator An interface for interacting with auth tokens.
HttpStack An HTTP stack abstraction.
HurlStack.UrlRewriter An interface for transforming URLs before use.
ImageLoader.ImageCache Simple cache adapter interface.
ImageLoader.ImageListener Interface for the response handlers on image requests.
 

Class Summary
AndroidAuthenticator An Authenticator that uses AccountManager to get auth tokens of a specified type for a specified account.
BasicNetwork A network performing Volley requests over an HttpStack.
ByteArrayPool ByteArrayPool is a source and repository of byte[] objects.
ClearCacheRequest A synthetic request used for clearing the cache.
DiskBasedCache Cache implementation that caches files directly onto the hard disk in the specified directory.
DiskBasedCache.CacheHeader Handles holding onto the cache headers for an entry.
HttpClientStack An HttpStack that performs request over an HttpClient.
HttpHeaderParser Utility methods for parsing HTTP headers.
HurlStack An HttpStack based on HttpURLConnection.
ImageLoader Helper that handles loading and caching images from remote URLs.
ImageRequest A canned request for getting an image at a given URL and calling back with a decoded Bitmap.
JsonArrayRequest A request for retrieving a JSONArray response body at a given URL.
JsonObjectRequest A request for retrieving a JSONObject response body at a given URL, allowing for an optional JSONObject to be passed in as part of the request body.
JsonRequest<T> A request for retrieving a T type response body at a given URL that also optionally sends along a JSON body in the request specified.
NetworkImageView Handles fetching an image from a URL as well as the life-cycle of the associated request.
NoCache A cache that doesn't.
PoolingByteArrayOutputStream A variation of ByteArrayOutputStream that uses a pool of byte[] buffers instead of always allocating them fresh, saving on heap churn.
RequestFuture<T> A Future that represents a Volley request.
StringRequest A canned request for retrieving the response body at a given URL as a String.
Volley