android-volley Questions
3
Solved
This OkHttpStack is no longer supported in OkHttp2.0:
https://gist.github.com/JakeWharton/5616899
What is the current pattern to integrate OkHttp 2.0.0 with Volley?
Curiel asked 23/6, 2014 at 20:49
2
In my application I am using volley imageLoader but there is one issue there I couldn't understand.
When I am calling only response.getBitmap and set it as background imageview it's fine, but when...
Prefabricate asked 6/10, 2013 at 13:0
1
Solved
I have a project making REST calls to an HTTPS backend
It which works fine on some devices, and breaks on others.
This is the error I get:
com.android.volley.NoConnectionError:
javax.net.ssl....
Province asked 21/3, 2014 at 16:32
4
I kinda liked Volley framework, but I still have some doubts about it.
For example, how does Volley line up with Loader pattern? Since it's requests are handled in an async manner, calling it on b...
Legislative asked 5/6, 2013 at 10:57
2
Solved
I use Volley and NetworkImageView. This has been working great for several projects. However I need to send auth token in headers for my image request right now. What is the best way to do this? In...
Miscible asked 21/3, 2014 at 20:4
1
I'm trying to send a request using Volley but I can't figure how to make it work.
I need to send a POST request with JSON encoded data as the body, but after hours of trying different things I sti...
Amphipod asked 12/12, 2014 at 19:51
3
Solved
One thing I've never liked about Gson is the fact that you have to pass a Class object or a TypeToken based on if you're getting an item or a list of items. Now, when trying to use Volley with Gson...
Cantonment asked 6/10, 2013 at 20:54
1
I'm trying to make my app communicate with my server via https.
As I don't want to pay to get my server certificate signed by a trusted CA, the solution is to use a self signed certificate.
So, I'...
Mcclimans asked 16/10, 2014 at 19:31
1
Solved
I would like to make a request using the Android Volley library in a different thread.
What I mean is, there is the connection which is in the thread and the data is processed in the UI thread.
I...
Elyse asked 27/10, 2014 at 12:56
4
Solved
Well, I decided to try out the Volley networking library for Android and the new Android Studio IDE at the same time.. However, I'm running into some problems.
I built volley.jar, copied it into m...
Inwardness asked 8/6, 2013 at 18:38
2
In my app for Android I'm using Volley for loading images in custom listview.
when i refresh(delete all items and load tiems) listview many times,
my app is killed with this message
how can i fix...
Bendigo asked 26/4, 2014 at 17:20
1
Solved
I'm using Volley as my network stack in a project I'm working on in Android. Part of my requirements is to download potentially very large files and save them on the file system.
Ive been looking ...
Doble asked 23/10, 2014 at 7:29
2
How to make Http Authentication for API using Volley library ?
I tried the following code ....it throws Runtime Exception & Null pointer exception..Please provide suggestions
String url = "Si...
Dric asked 28/7, 2013 at 6:36
1
Solved
I'm using BitmapLRUCache by Trey Robinson for image caching in my Android app. It's an implementation of LRU cache for Volley as it doesn't provide any image caching by itself.
Though it does use ...
Sissified asked 4/10, 2014 at 13:54
2
Solved
I am using Android Volley library to send POST request. And for POST request
Header is Content-Type:application/json
Post Body is Json String
But whatever,I do to change the Volley Request Head...
Seethrough asked 3/6, 2014 at 18:39
1
Solved
I am trying to write a POST call in Volley, to send an XML body to the server. I cannot set the Content-Type header correctly.
The basic StringRequest looks like this:
StringRequest folderRequest...
Woodhouse asked 7/10, 2014 at 22:41
2
I am wondering which libraries are best or faster. In my application I am using network request and image caching. I need to know which libraries are the best.
Ashly asked 18/10, 2013 at 20:28
1
Solved
data={
"request": {
"type": "event_and_offer",
"devicetype": "A"
},
"requestinfo": {
"value": "offer"
}
}
how to post this request from volley plz help
JsonObjectRequest jsonObjReq = new...
Higdon asked 18/9, 2014 at 7:27
2
Solved
I .add( new network calls to my Volley Request Queue which I have created as a singleton as suggested. But I always immediately .start() these network calls. This is always done as an action in an ...
Intuitional asked 28/2, 2014 at 21:49
5
Solved
I am having trouble implementing Image cache using the new Volley library. In the presentation, code look like this
mRequestQueue = Volley.newRequestQueue(context);
mImageLoader = new ImageLoader(...
Hendry asked 22/5, 2013 at 2:37
2
For those unfamilar with Volley its a networking library and,it will switch its http request client from HttpUrlConnection or HttpClient depending on android version, so one thing I need to know is...
Caves asked 24/8, 2013 at 0:50
1
Solved
I am Woking on an android application where I am very interested to use volley library to perform the network http calls.
But my question I found that this library do operations in different back...
Merchantman asked 30/5, 2014 at 19:44
2
Solved
Could somebody show me any example how execute POST or GET request using volley library to server with certificate issued by a well known CA? Do I have to change anything compare to standard http r...
Babbling asked 4/2, 2014 at 14:39
2
Solved
I am using the following code for string request on volley
pDialog = new ProgressDialog(context);
pDialog.setMessage("Loading...");
pDialog.setCancelable(false);
pDialog.show();
StringRequest...
Laevorotation asked 2/8, 2014 at 5:14
2
Solved
Moving over form iOS recently, I realised that to handle fast scrolling of 100s of large images,
it's quite a bit of work and in practice you need to use Picasso (or maybe Volley).
Now that Recyc...
Lycurgus asked 28/6, 2014 at 20:30
© 2022 - 2024 — McMap. All rights reserved.