android-volley Questions
5
Solved
Hi i am using Volley for my login page. I need to pass data like this manner
{
userID : '-988682425884628921',
email :'[email protected]',
passwd : '123ss'
}
I am using POST Method to send ...
Earful asked 27/5, 2016 at 10:34
4
I'm using Volley to make a POST request in my application, and in my case, a good response is a 201 with an empty body. I'm using a JSONRequest, to make the call.
My problem is that the error resp...
Samoyed asked 6/5, 2014 at 13:59
2
Solved
I have an fragment where I try to Instantiate a new newRequestQueue with the Volley API.
I try to instantiate it like this:
RequestQueue queue = Volley.newRequestQueue(this);
However, when I t...
Newkirk asked 26/9, 2015 at 10:7
4
Solved
Trying to use Volley lib as a network wrapper for my android application. I have a connection up and running, but the problem is that every time there is multiple "Set-Cookie" headers in the respon...
Rrhagia asked 25/9, 2013 at 7:4
4
Solved
I have nested json array in below format.I am using volley liabrary for JSON Parsing.
{
"City": [{
"name": "Mumbai",
"Mumbai": [{
"area": "andheri",
"diler": [{
"DName": "yuvraj"
}]
}, {
...
Flinty asked 26/11, 2016 at 12:15
5
how to create a separate class in which define all about volley
and in another activity we directly pass URL,CONTEXT and Get Response...
Unipolar asked 25/2, 2016 at 13:3
1
I am facing a problem where my POST request parameters are not going to server after 1st time. I know Volley is using cache mechanism for responses, but in my case my request parameter values can b...
Launderette asked 6/1, 2018 at 11:18
3
Solved
I want to clear the request queue each 30 minutes for example.
So What is the best way to clear volley cache automatically?
Override methods by extending the volley cache class?
Or build a timer...
Franek asked 28/6, 2014 at 7:22
2
Solved
I am working with Volley, I want to make request to a server which returns me a JSON in the "vissible layer" (I can see it in the web browser). My problem is that the server also returns my in the ...
Monomolecular asked 5/4, 2016 at 15:37
4
Solved
When I am making a network call using jsonObject request. I am not receiving any response. I always receive HTTP response for request=<[ ] before my URL. I have tried these links as well but not...
Villeneuve asked 22/12, 2017 at 6:41
1
Solved
How to set J SON data in bar entry in two decimal point?
Nashom asked 20/12, 2017 at 6:39
2
Solved
I'm very sorry to ask this very simple question, but it's more than half hour that I'm trying to find the last version of Android Volley.
Here: https://developer.android.com/training/volley/...
Sexagesimal asked 26/3, 2017 at 8:55
6
Solved
Does anybody know if it is possible to clear the cached image from a single NetworkImageView using Googles Volley library?
I have an avatar image in a NetworkImageView and would like to show the n...
Abdominal asked 13/8, 2014 at 13:10
1
Solved
I'm using volley and I have a queue to call some APIs. The queue is filled from a database.
before adding request to volley request queue I set request tag by calling
jsonObjectRequest.setTag(i...
Groggery asked 7/11, 2017 at 12:44
1
Solved
I'm trying to get access tokens from the server using a volley String request. I have tried making a JsonObjectRequest also. Both are below.
public void getAuthenticationTokens(Object param1, fina...
Bissextile asked 10/11, 2017 at 16:40
3
I use google's volley library and I have been battling memory leaks in my apps for weaks now. I have done soo much research and tried soo much already but now I just do not know what to do. This is...
Agribusiness asked 30/10, 2017 at 22:15
6
Solved
I am trying to send an image with my post data to my server from android. To accomplish this I base 64 encoded my image to string and sent it using the android volley library. This is causing probl...
Reube asked 15/11, 2013 at 21:39
1
i have a total 12 fragment in navigation drawar.. each fragment has volley method.
and each fragment display its own volley response except position = 1 and position = 5 fragment.
when my app star...
Cluj asked 16/10, 2017 at 6:32
3
Solved
My project has been using Android Volley network framework for a long time, but recently I found a SSL 3.0 protocol bug published on the Internet.
I want to know how can I find out what's the TLS ...
Pawnshop asked 7/7, 2015 at 13:7
2
Solved
I have been coding an
android based Social Community application with RealTime database solution
which is done by using Volley library to receive and send data from a PHP based server. ...
Wileen asked 4/10, 2017 at 10:51
4
I am using volley library for making web-services call. I made a general class for making all web services call and making service call from there and made anonymous listener for successful and err...
Deyoung asked 22/9, 2016 at 5:11
4
I would like to send and receive a Json Array with volley.
Now I can receive an array and it's ok but I don't know how to send a request (For example: with post method).
JsonArrayRequest arrayReq...
Modigliani asked 22/2, 2015 at 10:35
5
Solved
RequestQueue mRequestQueue = Volley.newRequestQueue(getApplicationContext());
mRequestQueue.add(new JsonObjectRequest(Method.GET, cityListUrl, null, new Listener<JSONObject>()
{
public void...
Stringendo asked 22/1, 2014 at 7:52
2
Solved
What type of response listener must we use to handle gzip responses with Android Volley?
If a String listener is used, the response seems to lose its encoding.
How do you handle gzip responses us...
Carvalho asked 15/1, 2014 at 18:3
1
Solved
For fetch data I use volley library. When i use Local Address everything work right. My activity shows data.
String json_url = "http://192.168.1.4/android/contactinfo.php";
but when I fetch data...
Syblesybley asked 26/8, 2017 at 17:10
© 2022 - 2024 — McMap. All rights reserved.