Method and Description |
---|
com.android.volley.toolbox.JsonRequest.getPostBody() |
com.android.volley.Request.getPostBody()
Use
Request.getBody() instead. |
com.android.volley.toolbox.JsonRequest.getPostBodyContentType() |
com.android.volley.Request.getPostBodyContentType()
Use
Request.getBodyContentType() instead. |
com.android.volley.Request.getPostParams()
Use
Request.getParams() instead. |
com.android.volley.Request.getPostParamsEncoding()
Use
Request.getParamsEncoding() instead. |
Constructor and Description |
---|
com.android.volley.toolbox.ImageRequest(String, Response.Listener<Bitmap>, int, int, Bitmap.Config, Response.ErrorListener) |
com.android.volley.toolbox.JsonRequest(String, String, Response.Listener<T>, Response.ErrorListener)
Use
#JsonRequest(int, String, String, Listener, ErrorListener) . |
com.android.volley.Request(String, Response.ErrorListener) |