android-volley Questions
1
Solved
When I call to my WCF service using andoroid volley library it throw TimeOut Exception. This is my code. What is the error of this code.
RequestQueue queue = Volley.newRequestQueue(getApplicationC...
Holmium asked 8/4, 2016 at 6:21
1
Solved
I am new to android and creating an app that communicate to server through web-service. Server side code is written in asp.net, and server side is maintaining Session.
I am Using Volley to call th...
Hesperian asked 8/4, 2016 at 9:44
4
I'm retrieving the content of a invalid web address with volley, i.e. http://www.gigd32fdsu.com:
This is my test code:
// Instantiate the RequestQueue.
RequestQueue queue = Volley.newRequestQueue(...
Sinaloa asked 24/9, 2014 at 11:20
6
Solved
I need to get the response 8 times nearly(dynamic) based on the array list size.So I had used for loop.inside the for loop, I am using volley get response.
While hitting the api everytime,I need t...
Shill asked 25/3, 2016 at 6:18
2
Solved
I want volley to cache the response obtained from the server. Hence, I have implemented the caching code (ParseNetworkResponse). But volley is sending cached parameters when a POST request is made....
Zebe asked 29/3, 2016 at 15:22
3
I try to execute a new volley request in the current volley request, but when the new request is called it don't step into the onrespond method.
The new request should be executed before the first...
Sputum asked 17/6, 2015 at 13:57
4
Solved
I just encountered this sort of a situation while developing an Android application today where I was required to render graphs based on responses from 2 different API's. I'm using Volley and what ...
Papageno asked 15/3, 2016 at 8:0
3
In my Photo Collage app for Android I'm using Volley for loading images.
I'm using the DiskBasedCache (included with volley) with 50 mb storage to prevent re-downloading the same images multiple t...
Insinuation asked 4/1, 2014 at 3:29
2
Solved
So, I have this Volley PUT request:
private boolean syncCall(JSONObject jsonObject, final VolleyCallback
callback) {
final ProgressDialog progDailog = new ProgressDialog(context);
final Bool...
Catchup asked 19/2, 2016 at 13:15
0
I want to use the Volley Library to comunicate JSON file from an Android application to a REST API server. First of all I want to test the library with JUnit Tests, to see if my request are correct...
Fleet asked 24/2, 2016 at 8:36
1
Solved
I am trying to post some parameters to my rails API using Volley in Android. This is the code:
For Request.Method i tried POST/GET/PUT nothing works.
I tried to call a log statement in the getPa...
Bifoliolate asked 22/2, 2016 at 12:36
1
I have some requests I'm making with Android Volley. As the Listeners are doing things like turning the response JSON into objects, I'd like to test them to make sure they're doing the right thing....
Wescott asked 4/9, 2013 at 7:19
3
Solved
In my project, I am using volley to download a JSON stream which I parse and show in a listview. I use the following method to load my data:
private void loadEventData(int year, final int month) {...
Formulism asked 20/10, 2013 at 0:58
3
I am looking into both these Android Http Networking libraries.
I would like some peoples experiences with using the two libraries. Personally I have always used the http://loopj.com/android-async...
Substitution asked 17/8, 2014 at 6:30
1
Solved
I am trying to send some authentication headers from GET request and I tried using Volley JsonObjectRequest call :
Map<String,String> params=new HashMap<String,String>();
params.put("...
Impotence asked 5/2, 2016 at 7:24
3
Solved
I'm using mcxiaoke/android-volley library.Im getting compilation error as
Error:(77, 37) error: reference to JsonObjectRequest is ambiguous, both constructor
JsonObjectRequest(int,String,String,...
Acquisition asked 17/3, 2015 at 17:0
2
Solved
I currently encode and decode images to Base64. I overcame the initial issue with OOM's with the use of streams to encode the images into strings.
My issue now is that I cannot fathom how to add m...
Scrophulariaceous asked 20/1, 2016 at 16:48
1
Solved
/**
* Creates a pseudo-unique filename for the specified cache key.
*
* @param key The key to generate a file name for.
* @return A pseudo-unique filename.
*/
private String getFilenameForKey(...
Pondweed asked 25/1, 2016 at 2:40
2
Solved
My question should sounds something like stupid, but i am just jumping from Asynktask to RxJava.
So:
Is possible to use RxJava Observable with Volley Requests?, it means,
using future requests.
I...
Presumptuous asked 21/9, 2015 at 17:35
2
Solved
As past when use AsyncTask we have two method doInBackground() to do all work and onPostExecute() to make change when all data back completed, so I can stop all code until the right data come back,...
Tape asked 12/3, 2014 at 17:57
2
Any one can help me for implement digest authentication using Google Volley for web service calling (REST).
basically Volley is using SHA1 authentication(Basic Auth), But is there any way to modif...
Forde asked 16/12, 2015 at 6:11
4
Solved
How do I make a .jar file out of the Volley project (git repository)?
I have tried to follow the instructions in this answer, however running android update project -p . in the cloned volley folde...
Appointive asked 15/12, 2014 at 15:54
1
Solved
so I've seen a couple of examples for JsonObjectRequests where either this code has been added
@Override
public String getBodyContentType() {
return "application/json";
}
and sometimes this...
Pursuant asked 7/1, 2016 at 7:48
4
Solved
I am using Android Volley lib in my project to execute network requests, all works very well but I have some troubles with the "cancel" feature of this lib. I explain my issue..
I've an activity, ...
Sonjasonnet asked 14/3, 2015 at 16:13
6
Solved
I'm looking for an open source image loading/caching solution.
I am looking in to:
Google's Volley,
Square's Picasso
Universal Image Loader
I want to be able to handle async image loads from d...
Loculus asked 28/5, 2013 at 0:16
© 2022 - 2024 — McMap. All rights reserved.