Uses of Interface
com.android.volley.Response.ErrorListener

Packages that use Response.ErrorListener
com.android.volley   
com.android.volley.toolbox   
 

Uses of Response.ErrorListener in com.android.volley
 

Constructors in com.android.volley with parameters of type Response.ErrorListener
Request(int method, String url, Response.ErrorListener listener)
          Creates a new request with the given method (one of the values from Request.Method), URL, and error listener.
Request(String url, Response.ErrorListener listener)
          Deprecated. Use Request.Request(int, String, com.android.volley.Response.ErrorListener).
 

Uses of Response.ErrorListener in com.android.volley.toolbox
 

Subinterfaces of Response.ErrorListener in com.android.volley.toolbox
static interface ImageLoader.ImageListener
          Interface for the response handlers on image requests.
 

Classes in com.android.volley.toolbox that implement Response.ErrorListener
 class RequestFuture<T>
          A Future that represents a Volley request.
 

Constructors in com.android.volley.toolbox with parameters of type Response.ErrorListener
ImageRequest(String url, Response.Listener<Bitmap> listener, int maxWidth, int maxHeight, Config decodeConfig, Response.ErrorListener errorListener)
          Creates a new image request, decoding to a maximum specified width and height.
JsonArrayRequest(String url, Response.Listener<JSONArray> listener, Response.ErrorListener errorListener)
          Creates a new request.
JsonObjectRequest(int method, String url, JSONObject jsonRequest, Response.Listener<JSONObject> listener, Response.ErrorListener errorListener)
          Creates a new request.
JsonObjectRequest(String url, JSONObject jsonRequest, Response.Listener<JSONObject> listener, Response.ErrorListener errorListener)
          Constructor which defaults to GET if jsonRequest is null, POST otherwise.
JsonRequest(int method, String url, String requestBody, Response.Listener<T> listener, Response.ErrorListener errorListener)
           
JsonRequest(String url, String requestBody, Response.Listener<T> listener, Response.ErrorListener errorListener)
          Deprecated. Use #JsonRequest(int, String, String, Listener, ErrorListener).
StringRequest(int method, String url, Response.Listener<String> listener, Response.ErrorListener errorListener)
          Creates a new request with the given method.
StringRequest(String url, Response.Listener<String> listener, Response.ErrorListener errorListener)
          Creates a new GET request.