Top "Android-volley" questions

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

Android Volley - BasicNetwork.performRequest: Unexpected response code 400

Problem statement: I am trying to access an REST API that will return a JSON object for various HTTP status …

android android-volley
Best way to incorporate Volley (or other library) into Android Studio project

I've seen different advice on the best way to do this This question covers creating a jar. Elsewhere, I've seen …

gradle android-studio android-volley
Volley Android Networking Library

I have few questions around using Volley in my projects: Can this library be used in any Java project or …

android http android-networking android-volley
Android: How handle message error from the server using Volley?

I am using Volley for my Android app to fetch data from my server. It works well except when handling …

android android-volley
Android Studio + Volley

I'm new to Android Studio and I want to use Volley library for my app but i can't add the …

android android-studio android-volley static-libraries
Volley JsonObjectRequest Post parameters no longer work

I am trying to send POST parameters in a Volley JsonObjectRequest. Initially, it was working for me by following what …

android post android-volley jsonobject
Pull to refresh recyclerview android

Hi I've a tabbed activity, and in the first tab I fetch data from server and show it in a …

android android-fragments android-volley android-cardview pull-to-refresh
Working POST Multipart Request with Volley and without HttpEntity

This is not really a question, however, I would like to share some of my working code here for your …

java android asp.net-web-api android-volley httpentity
Making a HTTPS request using Android Volley

I am trying to make a https request using this code: RequestQueue queue = Volley.newRequestQueue(getApplicationContext()); request = new Request<…

android https android-volley
Can I do a synchronous request with volley?

Imagine I'm in a Service that already has a background thread. Can I do a request using volley in that …

java android android-volley