Top "Android-volley" questions

Volley is a Google library for Android that makes networking and remote image loading easier and faster.

How do you use the Android Volley API?

I am thinking of implementing the Android Volley library in my next projects (Google IO presentation about Volley). However, I …

android android-volley
Http Status Code in Android Volley when error.networkResponse is null

I am using Google Volley on the Android platform. I am having a problem in which the error parameter in …

android http-status-codes android-volley
Send post request using Volley and receive in PHP

I am trying to use volley in my project to handle all my HTTP request since it's the most efficient …

php android json http android-volley
Using cookies with Android volley library

Does anybody know how to attach a session cookie to the request using com.android.volley library? When I log …

android android-volley
Handle Volley error

I want to handle and show some message in onErrorResponse below is my code. String url = MainActivity.strHostUrl+"api/delete_…

android error-handling android-volley
Volley - Sending a POST request using JSONArrayRequest

I'm using Volley to interact with an API. I need to send a post request (with parameters) to a service …

java android android-volley
How to upload file using Volley library in android?

I already have a sub class of Request that is used for http post to the server. The problem is, …

android file http-post httprequest android-volley
Volley RequestQueue Timeout

RequestQueue mRequestQueue = Volley.newRequestQueue(getApplicationContext()); mRequestQueue.add(new JsonObjectRequest(Method.GET, cityListUrl, null, new Listener<JSONObject>() { public void …

java android android-volley connection-timeout
Android Volley double post when have slow request

I have a problem with Volley POST request on slow network. Everytime I see BasicNetwork.logSlowRequests in my LogCat, my …

android android-volley
Android - Wait for volley response to return

I need execute a Volley request and wait for the response to parse it and return it, but have no …

java android wait android-volley