Top "Android-volley" questions

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

How does one use Basic Authentication with Volley on Android?

I'm looking through examples and code but I don't see anything implemented. Is this possible at this stage?

android android-volley
How to send Authorization header in Android using Volley library?

How can I send Authorization header using Volley library in Android for GET method? This is my request code: JsonObjectRequest …

android android-volley
Android Studio:error: illegal character: '\u2028'

I am trying to do a JSONObject request: final String URL = "https://some/url"; // Post params to be sent to …

java android string android-studio android-volley
Android set up Volley to use from cache

I'm trying to create and use a cache for a server JSON response. For example: cache JSON objects to internal …

android caching android-volley
Cancel All Volley Requests Android

At the moment i´m using mRequestQueue.cancelAll(getActivity()) at on stop method in a fragment but apparently when i …

android android-volley
Android Volley ImageLoader - BitmapLruCache parameter?

I am having trouble implementing Image cache using the new Volley library. In the presentation, code look like this mRequestQueue = …

android image-loading bitmapcache android-volley
Get HTTP status code for successful requests with Volley

I'm retrieving the content of a invalid web address with volley, i.e. http://www.gigd32fdsu.com: This is …

java android android-volley
Android volley to handle redirect

I recently started to use Volley lib from Google for my network requests. One of my requests get error 301 for …

android android-volley
Why does volley's response string use an encoding different from that in the response headers?

When doing a volley request (either StringRequest or JsonObjectRequest), using the OkHttp stack, the response string's encoding is set to …

android character-encoding android-volley
Volley not calling getParams() for standard POST request

I am trying to post some parameters to my rails API using Volley in Android. This is the code: I …

android android-volley