android-volley Questions

1

Currently I am maintaining one static Volley request queue as described here: Instantiating core Volley objects private static RequestQueue mReqQueue; Should there be one and only one static r...
Yoohoo asked 17/7, 2013 at 20:13

4

Solved

I almost always use a Service when I download data from a web service. I store the result in a database and displays the result in my view using a cursor loader. But after Google released the netwo...
Labuan asked 4/8, 2013 at 14:14

1

Solved

I am using Google's Volley Library as my design for getting network data; I have set up a RequestQueue requestQueue = new RequestQueue(new DiskBasedCache(new File(context.getCacheDir(), DEFAUL...
Foxhound asked 12/8, 2013 at 15:51

1

Solved

Below is a snapshot of the Volley logs for an image request. Almost half of the rendering time is due to network-queue-take. Another one is even more dramatically high, the bulk of the time being i...
Situs asked 7/8, 2013 at 18:7

1

Solved

Since there was this awesome presentation on Volley I tried to include it in a project I am working on. I found myself correcting some bugs I found in the source code that was published. Doe...

1

Solved

The service I am using to obtain images, like many such sites does not have a cache control header indicating how long the image should be cached. Volley uses an http cache control header by defaul...
Pelagias asked 5/8, 2013 at 18:53

2

Solved

I want to use Volley's NetworkImageView to load images from my REST API that needs Basic HTTP Authorization. So i need to add headers to HTTP Request. I've made up following approaches: Override ...
Allowable asked 4/6, 2013 at 13:54

3

Solved

I am using volley to showing images in horizontal swipe view from the server, but my images are quite large that's way i am getting an exception of out of memory Below is my volley class: public ...
Hanshansard asked 10/6, 2013 at 16:59

1

Solved

What I miss in this fantastic library is the fact it does not recycle bitmaps in NetworkImageView. It would be perfect if in method NetworkImageView.onDetachedFromWindow the recycle was called some...
Showman asked 28/6, 2013 at 8:17

1

Solved

I am integrating Volley into a project and came across the standard [We have items in the Cache, but want to allow the User to refresh anyway] Scenario Now Google Volley provides 2 ways to clear ...
Fictile asked 21/6, 2013 at 8:7

1

Solved

After watching this year's Google IO session: "Google I/O 2013 - Volley: Easy, Fast Networking for Android" I've decided to replace my current RESTful implementation in favor of using Volley. As s...
Pricilla asked 14/7, 2013 at 7:22

1

Solved

What I'm a bit unsure about with Volley is the RequestQueue, ImageLoader objects and ImageLoader.ImageCache implementations.. In the examples I have come across they are instantiated in onCreate(...
Maulstick asked 27/6, 2013 at 6:52

1

Solved

I am using volley to queue a series of requests. I am showing a progress dialog to the user when these requests are happening. Is there a way I can check when all these requests are finished. This ...
Danyelldanyelle asked 21/6, 2013 at 18:54

1

So I've decided to try out the new Volley library as shown on Google IO 2013. I've tried it out while using the easy solution of NetworkImageView to show multiple images on a GridView. It works ...

2

Solved

Is it possible to modify the expiration policy for the cache on Google's Volley lib? I believe you can implement your own cache, however is there an easy way to do this with the default implementat...
Vickeyvicki asked 28/5, 2013 at 2:55

1

Solved

As you know Google has announced a new library Volley to manage network request based on HTTP Protocol. But if i want to use this library to connect to msql db . Currently i am using async task t...
Lilith asked 30/5, 2013 at 13:3

© 2022 - 2024 — McMap. All rights reserved.