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

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

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

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

Constructors in com.android.volley.toolbox with parameters of type Response.Listener
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.