インタフェース
com.android.volley.Response.ErrorListener の使用

Response.ErrorListener を使用しているパッケージ
com.android.volley   
com.android.volley.toolbox   
 

com.android.volley での Response.ErrorListener の使用
 

Response.ErrorListener 型のパラメータを持つ com.android.volley のコンストラクタ
Request(int method, java.lang.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(java.lang.String url, Response.ErrorListener listener)
          推奨されていません。 Use Request.Request(int, String, com.android.volley.Response.ErrorListener).
 

com.android.volley.toolbox での Response.ErrorListener の使用
 

com.android.volley.toolbox での Response.ErrorListener のサブインタフェース
static interface ImageLoader.ImageListener
          Interface for the response handlers on image requests.
 

Response.ErrorListener を実装している com.android.volley.toolbox のクラス
 class RequestFuture<T>
          A Future that represents a Volley request.
 

Response.ErrorListener 型のパラメータを持つ com.android.volley.toolbox のコンストラクタ
ImageRequest(java.lang.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(java.lang.String url, Response.Listener<JSONArray> listener, Response.ErrorListener errorListener)
          Creates a new request.
JsonObjectRequest(int method, java.lang.String url, JSONObject jsonRequest, Response.Listener<JSONObject> listener, Response.ErrorListener errorListener)
          Creates a new request.
JsonObjectRequest(java.lang.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, java.lang.String url, java.lang.String requestBody, Response.Listener<T> listener, Response.ErrorListener errorListener)
           
JsonRequest(java.lang.String url, java.lang.String requestBody, Response.Listener<T> listener, Response.ErrorListener errorListener)
          推奨されていません。 Use #JsonRequest(int, String, String, Listener, ErrorListener).
StringRequest(int method, java.lang.String url, Response.Listener<java.lang.String> listener, Response.ErrorListener errorListener)
          Creates a new request with the given method.
StringRequest(java.lang.String url, Response.Listener<java.lang.String> listener, Response.ErrorListener errorListener)
          Creates a new GET request.