android-volley Questions
2
Solved
I have recently started using Android Volley in my project.
The common practice mentioned in most of the tutorials is to use it this way:
JsonObjectRequest jsonObjReq = new JsonObjectRequest(Meth...
Teacake asked 19/9, 2015 at 20:35
5
Solved
I'm currently trying to send a simple POST-request via Google Volley to my server.
Therefore I've written the following lines of code:
Map<String, String> params = new HashMap<String, Str...
Ceaseless asked 4/11, 2013 at 1:6
2
Solved
I am a junior android developer and I almost finished the alpha version of my first big project. I think that I have good knowledge of java but I am not sure if I organized my app right.
Short des...
Machicolate asked 13/9, 2015 at 16:5
1
Solved
I am new to Android and Volley, and I need your help.
I need to post a String, have a json to response to it and, if it doesn't raise a bad request, start a new intent with some values coming from ...
Swim asked 17/9, 2015 at 9:38
1
Solved
I have implemented recyclerview in my application and now i need to fetch data from the server and i just came to know about volley being the best way to fetch data. I searched online but i am unab...
Isobelisocheim asked 10/9, 2015 at 2:15
2
Solved
Please, does Volley automatically add my GET params to the URL? For me it's not working so and also when looking into sources, I just cant find any call of the getParams method..
So should I build ...
Bloomsbury asked 28/8, 2013 at 9:52
2
Solved
I am using Android Volley for network calls. Generally I use JSONRequest to receive the json data and then convert them into object using GSON.
new Response.Listener<JSONObject>() {
@Overri...
Breach asked 6/9, 2015 at 4:51
1
Solved
I'm trying to get back JSON object in the following way:
JSONObject jsonObject = http.makeRequest("GET", "https://api.twitter.com/1.1/search/tweets.json", null);
General method for processing al...
Boarhound asked 3/9, 2015 at 12:11
1
Solved
I'm programming an application which communicates a http server.
I have both synchronized and asynchronized requests. I have a singleton which contains Volley RequestQueue for asynchronous request...
Kinghood asked 28/8, 2015 at 10:27
1
Solved
Getting the Error below while using Android-Volley in android. The same problem remains unsolved here too...
08-27 14:46:18.779 26990-26990/com.rev.volleydemo D/VOLLEY﹕ http://api.androidhive.info...
Osmious asked 27/8, 2015 at 9:23
2
Solved
I tried to do a simple GET request in an Android Code, I just copied the code from the official site of Volley but i get an error saying that : " Cannot resolve symbol "Method" ".
My code is this...
Carousel asked 26/8, 2015 at 14:3
1
Solved
I'm an android newbie.
This question has been asked many times, but I've went through almost all the questions in here.
I'm trying to use a self-signed certificate on Node.Js server (using expre...
Unremitting asked 22/8, 2015 at 8:38
6
I'm trying to display a listview with a lot of (remote) images. I'm trying to use volley for the task.
Volley somewhat works, but not good enough. In ImageLoader.get volley has the following piece...
Unconcerned asked 15/7, 2013 at 7:6
2
Solved
I am using Android Volley to cache requests this works fine when I was using GET but I switched to use POST for some reasons. Now I want to cache the same URL with different POST data.
Request 1 ...
Extreme asked 12/10, 2014 at 14:20
1
Solved
I want to send post request with raw string rather than setting params using volley.
I have tried to override the getBody method in StringRequest like following:
@Override
public byte[] getBody(...
Hyperesthesia asked 5/5, 2015 at 15:13
2
Solved
I have one small strange question: How do I set the user agent in Volley?
I need the full version of some sites (desktop version), not mobile version.
I tried to change variable userAgent from "...
Longevous asked 4/6, 2013 at 8:26
3
I have a native android app using volley framework to fetch data from a PHP server end script.
It worked well on most time, but I have 20% percentage failure.
The error says:
com.android.vol...
Zworykin asked 1/7, 2015 at 10:32
2
I have get problem "Unexpected response code 500", when I access URL API.
This my code with volley library:
String url= "http://103.241.24.35/android/android_login_api/index.php";
public void d...
Jordanna asked 10/6, 2014 at 8:24
1
Solved
I am a bit confused about volley NetworkError, and about the difference between NetworkError and NoConnectionError. The doc says this about NetworkError -
Indicates that there was a network erro...
Meras asked 4/8, 2015 at 6:25
2
Solved
Volley returns an error when a 404 response is returned from the server even if that 404 response contains json based error codes. It does not parse the 404 response which contains jason { code: re...
Neff asked 20/8, 2013 at 21:21
2
I am using Volley for calling web request for my app. But as i am Volley for first time. I just want to know that how to upload image/video media data via volley using multipart.
I searched for i...
Arras asked 17/8, 2013 at 12:33
1
I was recently playing a little bit with the RecyclerView and the concept of ViewHolder's in Android 5+. The adapter implementation handles quite a large dataset (i.e ~ 60 000 items), requested fro...
Condone asked 13/4, 2015 at 21:35
1
I want to send a post request using volley. I have data in this format.
[{"date":"24 Jul 2015","doctorEmail":"[email protected]","doctorName":"aquib","time":"10:29:17","id":1},{"date":"24 Ju...
Nectar asked 25/7, 2015 at 5:54
3
Solved
I want to build a Utils class to make Volley calls simpler, like this:
Utils.java:
public class Utils {
static JsonObjectRequest mJsonObjectRequest;
protected static boolean busy = true;
public...
Extempore asked 24/7, 2015 at 4:10
1
Solved
I'm working on a Oauth2 Token system to access my REST API for my Android app. I'm having some problems with the token refreshment part on the client side.
Here is the flow : My app makes a reques...
Tracheostomy asked 23/7, 2015 at 19:19
© 2022 - 2024 — McMap. All rights reserved.