android-volley Questions
4
I'm new to Android Studio and I want to use Volley library for my app but i can't add the source as a library in Android Studio.
I've searched the web but couldn't find anything. Everywhere...
Dilapidated asked 29/8, 2013 at 14:9
2
I am trying to connect API url="api adress" which accepts two header types application/json to reponce in json and application/xml to reponce in xml. I need to hit JSON with json parameters and res...
Helgoland asked 4/7, 2014 at 9:22
3
Solved
I'm sending a JSONArray GET request with Volley, and it's returning the specified JSON array. Here's my Request:
JsonArrayRequest getRequest = new JsonArrayRequest(url,
new Response.Listener<J...
Marcelline asked 25/6, 2014 at 5:50
5
Solved
How can I check whether Volley gets the results of a JsonObjectRequest from the cache or from the network?
I need to show a progress dialog when it needs a network connection but not when the resu...
Inception asked 14/11, 2013 at 8:9
1
Solved
Ive followed a few tutorials, one in particular shows to do the following if you want to use the cached result for HTTP call.
Cache cache = MyApplication.getInstance().getRequestQueue().getCache()...
Ebonee asked 27/5, 2014 at 7:20
1
Solved
My code is:
class MyService extends Service{
public void onCreate(){
new ImageLoader(mRequestQueue, new VolleyLruCache(cacheSize))
.get(url, new ImageListener(){..});
}
}
I expect working we...
Hafer asked 7/5, 2014 at 8:33
1
In httpPost we setEntity(new StringEntity). But I'm using volley right now. I'd like to use that setEntity method in volley. How can I do that?
I would like to use it with Twitter api like this;
...
Tiflis asked 7/4, 2014 at 18:15
1
Solved
I am using Volley library in Android, I want to know what is maximum size of queue is allowed using Volley library. There is nothing I found related to this. As I know you need to add the network r...
Facture asked 30/3, 2014 at 12:45
1
Solved
I have some troubles finding some informations about Volley and the response.Listener.
Basically I have an operation to ask data to my backend, call is made throughout Volley in background (Handle...
Less asked 20/3, 2014 at 3:39
1
Solved
I'm looking for a way to get the response code of a thrown VolleyError. My ErrorListener looks like this:
Response.ErrorListener errorListener = new Response.ErrorListener() {
@Override
public v...
Sensitometer asked 12/3, 2014 at 10:5
1
I'm using google volley for networking in android. I will make a http GET request and need to return a response header value. I found some answers on stack overflow to access the header fields, but...
Token asked 3/3, 2014 at 1:49
1
Solved
I am trying to build a jsonobject to be send with a post request. But instead i get the error as shown below:
03-02 13:54:50.340: E/AndroidRuntime(2862): FATAL EXCEPTION: main
03-02 13:54:50.340: ...
Heroine asked 2/3, 2014 at 19:19
1
Solved
Playing around with the Volley library, I noticed that when making a POST JsonObjectRequest , if the server returns a code 304 or 200 with no data in the response (response.data), Volley interprets...
Fourway asked 22/2, 2014 at 11:18
1
I am trying to take an image like these
and turn them into the top right 1/4 of the image. The image below is an example of what I need.
**UPDATE: **
I have it (sort of) working, but scal...
Staysail asked 11/2, 2014 at 17:53
1
Google recently released Volley - a framework for handling network requests on Android. My question is can/should this lib be used with Appengine's cloud endpoints? The endpoints give you libraries...
Fulgurite asked 28/5, 2013 at 14:8
1
I am using volley library to call rest web services and I am using post and get but I don't know why I am sending post and it received as post from the server side so I want to print all requests t...
Broadbill asked 27/1, 2014 at 10:22
1
1)The default implementation of the disc based cache present in android -volley is allocated a total memory of 5MB .
2)But the app Iam developing contains a lot of images .So I want to increase t...
Modernism asked 23/1, 2014 at 3:19
2
Background
Using the Volley library's NetworkImageView is a convenient way to handle showing images from the web.
However, it has some bugs (as i've written here).
the problem
One of the issue...
Quianaquibble asked 2/9, 2013 at 14:37
2
Solved
How can i access HTTP header fields like ETag from a response using Volley ?
With HttpUrlCoonection i just do conn.getHeaderField("ETag") and that's it.
Thanks
Baseburner asked 20/12, 2013 at 11:2
1
I'm currently using Android's Volley networking library in a project I'm working on. I've pulled down the master branch of volley from https://android.googlesource.com/platform/frameworks/volley/, ...
Hall asked 5/11, 2013 at 20:2
2
In my Android application I have set up Volley.
Robolectric.application is initialized and all other tests runs smoothly.
I get this error when trying to get mocked HTTP response.
This is my test...
Casease asked 9/6, 2013 at 9:19
1
I'm using Volley library in my project but I have problem with OutOfMemory Exception. In my application I'm downloading thumbs and full size images from server via NetworkImageView using setImageUr...
Pivoting asked 1/8, 2013 at 10:21
2
Solved
I am making a post from android to php with data and an image. I'm scaling the image down in android and base 64 encoding it. When it is sent via volley, most images are somewhere between 70 ...
Cuevas asked 15/11, 2013 at 22:32
2
Solved
We're building an app that does a lot of animations and downloads a lot of images. After a certain amount of transactions (a predictable number), the app is crashing with the error:
A/Looper: Coul...
Strong asked 12/7, 2013 at 1:19
1
Solved
I am new to work on Volley and on caching too :P. Though I have already gone through a number of articles & posts related to Image Caching with Volley but I am still not clear with the best/pre...
Slapbang asked 16/10, 2013 at 6:46
© 2022 - 2024 — McMap. All rights reserved.