android-volley Questions

0

I'm getting an exception in logcart since last few days, this exception is generated by volley lib but most interesting thing is that it does not harm execution. Anybody, please help why this happ...
Slurp asked 27/6, 2018 at 14:35

2

Solved

I am trying to learn Volley library for posting data into webservices. I need to implement user registration form, following is the image of postman with parameters and header... now problem is, ...
Tactual asked 12/9, 2017 at 8:5

1

Solved

I am making an android app that needs to send Post requests to my server and could really use some help! I've been trying to make these requests using android Volley. I've read a lot of related que...
Intramundane asked 7/1, 2017 at 3:8

7

Solved

I would like to send a new JsonObjectRequest request: I want to receive JSON data (response from server): OK I want to send JSON formatted data with this request to the server JsonObjectRequest...
Claudianus asked 22/4, 2014 at 13:13

4

I would like to know how can I create unit tests for the volley framework. Mock the requests, the responses so that I can create unit tests that wont require a webservice to be working and network ...
Albuminoid asked 4/9, 2013 at 15:54

8

Solved

I am using Google Volley on the Android platform. I am having a problem in which the error parameter in onErrorResponse is returning a null networkResponse For the RESTful API I am using, I need to...
Fulvia asked 8/4, 2014 at 20:56

1

Solved

Right now I am doing like this deps = [ ":tensorflow_native_libs", "//tensorflow/contrib/lite/java:tensorflowlite", "@androidsdk//com.android.support:appcompat-v7-25.0.0", "@androidsdk//com.an...
Multimillionaire asked 29/5, 2018 at 13:21

1

I am using Volley to download a file from AWS. The file size is around 6 mb. In Android docs it is mentioned you should not download a large file using Volley. So what is the limit to the file size...
Chelsea asked 17/5, 2018 at 9:11

8

Solved

I saw Google IO 2013 session about Volley and I'm considering switching to volley. Does Volley support adding POST/GET parameters to request? If yes, how can I do it?
Heathcote asked 18/5, 2013 at 15:41

3

I have been trying to figure out this issue for two days now and I am completly stumped. For some reason I am sending one request to the queue but volley is returning it twice, which is calling the...
Yoghurt asked 17/11, 2013 at 6:43

1

How it is possible to download a pdf file or a zip file using android volley. It is easy to work using String, JSON, Image or Video. What about other files?
Spinoza asked 6/5, 2018 at 8:8

4

Solved

I read a post about Volley and I know it's great networking library. But I couldn't understand one thing. All requests are Async Task or not? When I want to send asyncTask request using Volley ...
Rossini asked 19/12, 2013 at 6:44

4

Solved

I am using Volley to send data to the server, Here I am unable to find the way to send both String and Array at a time in a single request. I can send the array like: Map<String, List<Stri...
Corrinacorrine asked 23/4, 2018 at 13:39

4

Solved

I am developing an application which send lot of data to server.Now i want to send an array of params to a php page using volley.But i am not able to send it. Code for adding params as Array. Str...
Stormi asked 2/2, 2015 at 6:32

7

I'm trying out the Google's new Volley library and it's looking sharp and loads images quickly when I use this method setImageUrl: holder.image.setImageUrl(url, ImageCacheManager.getInstance().get...
Demagogue asked 29/11, 2013 at 19:56

3

Solved

In my Android app I have to call a web service which looks like this http://mywesite.com/demo/mob/getmenubycategory/1 I am using the volley to send the request but the result is VolleyError 401...

2

Solved

I have created new Job retry policy : new DefaultRetryPolicy(5000, 2, 2); So, What does backoffMultiplier mean in DefaultRetryPolicy?
Contusion asked 5/4, 2017 at 7:32

2

Solved

I am Trying to download an Image into an ImageView by using the Volley Library. I inject the response of the Volley Library into the ImageView, but I am not getting the desired result. Please chec...
Queensland asked 12/12, 2016 at 16:5

2

Solved

I'm trying to make a JSONObject POST request using the Volley library to a server which takes 2 parameters, an object (Address) and a list of different objects (Tenants). When I try to make the re...
Turin asked 21/7, 2014 at 20:5

3

I am doing the following which perfectly works //else proceed with the checks JsonObjectRequest jsonObjectRequest = new JsonObjectRequest( Request.Method.GET, checkauthurl, null, new Respons...
Junko asked 14/3, 2018 at 17:26

5

I am new to android studio and volley library so please bear with me. I've added volley library by GitHub and then and added this line to build gradle file: compile 'com.android.support:appcompat-v...
Paramo asked 2/1, 2016 at 14:32

1

I am trying to use Google Speech api to translate text from any language to English. There is no error in api connection but volley is giving me error. Thanks for help. My Activity code: pr...
Gettogether asked 5/1, 2017 at 13:31

5

Solved

In one of my application, I am sending request to server using volley provided by Google. Problem : Timeout and error object is null on onErrorResponse(VolleyError error) What i have tried so fa...
Magistracy asked 6/11, 2015 at 4:50

9

Solved

I use the new Volley framework for Android to do a request to my server. But it timeouts before getting the response, although it does respond. I tried adding this code: HttpConnectionParams.set...
Leaky asked 13/6, 2013 at 18:45

2

Solved

I want to send a jsonobject with below format to server by using volley library { "user_id": 12, "answers": { "11": 3, "12": 4, "13": 5 } } JSONObject object = new JSONObject(); try { o...
Lelalelah asked 25/8, 2015 at 7:9

© 2022 - 2024 — McMap. All rights reserved.