android-volley Questions
1
Solved
I'm trying to POST a JSONObject in the body of a volley StringRequest but unfortunately the server receives an empty body. The logs print the correct mRequestBody string as soon as the JSONObject i...
Escent asked 18/11, 2021 at 4:3
6
This is not really a question, however, I would like to share some of my working code here for your reference when you need.
As we know that HttpEntity is deprecated from API22 and comletely remov...
Nl asked 27/8, 2015 at 3:25
3
Solved
My Android Volley JsonObjectRequest runs into onErrorResponse with the issue:
BasicNetwork.performRequest: Unexpected response code 405 for MY_URL
My URL is valid. I have checked that with a br...
Professed asked 11/11, 2015 at 11:44
3
Solved
I'm using Volley to make calls to a webservice
So ... I'm making this call:
POST /api/user/login HTTP/1.1
Content-Type: application/json
User-Agent: Dalvik/1.6.0 (Linux; U; Android 4.2.2; Samsung ...
Bushbuck asked 6/8, 2015 at 18:3
4
Solved
Similar question have been asked here, here and here but the context is quite different from this and moreover the code that gave from this error is written by the makers of Android and Android Stu...
Blen asked 17/10, 2016 at 19:17
18
Solved
I wanna use the google's volley library
I am using Android Studio and I know how to add .jar libraries.
But I could not create a .jar library with the volley files:
https://android.googlesour...
Goatee asked 18/11, 2013 at 22:45
5
Solved
I am using the glide library in my android project to fetch and display images.
Earlier I was using version 2.0.5 and facing rendering issue. The problem was that the wrong images were rendering. I...
Terresaterrestrial asked 13/9, 2014 at 12:39
4
Solved
I have a Volley Request code
RequestQueue queue = Volley.newRequestQueue(this);
String url =<My URL>;
// Request a string response from the provided URL.
StringRequest stringRequest = new S...
Fanti asked 10/10, 2015 at 12:31
2
Solved
I am currently using GsonRequest to issue rest GET requests. Not clear on what to use for PUT requests where I need to send over a whole JSon object to be updated. The Request object will accept PU...
Cynthia asked 2/8, 2013 at 23:5
2
I get the following error:
Process: com.project.publiko, PID: 27061
java.lang.NoSuchFieldError: No static field INSTANCE of type Lorg/apache/http/message/BasicHeaderValueFormatter; in class Lorg/ap...
Particular asked 29/4, 2016 at 19:37
2
Solved
Hi i want to Send Delete Request to server using Volley along Headers and body parameters. but i am not able to send request successfully
What i have tried
JSONObject jsonbObjj = new JSONObject()...
Ultrasonic asked 5/11, 2015 at 19:51
6
I'm attempting to convert a previously Activity-based tutorial to a Fragment, but I continue to run into the NullPointerException error on my Adapter.
The tutorial is based on this and I have slim...
Riebling asked 6/9, 2014 at 6:3
1
I have a problem with volley and SSL and some old Android devices.
Problem is that the root certificate we use that is publicly trusted is not in place in these old devices and the OS is no longer ...
Shute asked 29/3, 2021 at 10:16
10
Solved
In my Android app I am loading json data with a Volley JsonArrayRequest. The data were created by myself and I saved them with Sublime with UTF-8 encoding. When I get the Response and fill my ListV...
Bax asked 13/1, 2015 at 21:48
2
While developing my android application I'm getting this warning in my Logcat
WARNING: A connection to https://... was leaked. Did you forget to close a response body?
I'm using Okhttps as a tra...
Fennec asked 16/11, 2017 at 9:59
4
Solved
Using any of these examples:
http://developer.android.com/training/volley/request.html
I understand how to process the response of a succesful request, and how to detect and react to an error.
Ho...
Patagium asked 2/10, 2014 at 18:56
2
I came across a a section on cronet here
https://developer.android.com/guide/topics/connectivity/cronet
it states that
Cronet is the Chromium network stack made available to Android apps as a libr...
Unskillful asked 22/7, 2020 at 4:14
3
The problem
I'm developing a SDK with using the Volley library for http(s) calls.
I'm able to hide my application logs using a customize Log class wrapper, and I would like to disable every log l...
Aldershot asked 23/7, 2015 at 9:5
4
Solved
I wrote function using onClick method to EditText, load data to RecycleView. When click EditText load all data to AlertBox and if click one. Then load all data to RecycleView according to it. First...
Healthful asked 3/9, 2018 at 11:36
3
Solved
Am trying to achieve the above checkout flow using stripe SDK in android using this documentation https://stripe.com/docs/mobile/android/customer-information. I have created a backend call that r...
Mint asked 27/8, 2018 at 11:14
8
Every time I try to use POST method with Volley, I get sever error. I get null value in getCause, and some default value in getNetworkResponse.toString().
If I use GET method, this works fine (I g...
Saphena asked 14/5, 2015 at 1:29
4
Solved
Does anyone know whether Volley supports SSl in Android?
Is there is any way to support SSL via Volley?
Pearly asked 19/9, 2015 at 21:48
3
Solved
I'm using Volley in Android to perform my app requests. Unfortunately, I'm getting the following error:
com.android.volley.NoConnectionError: javax.net.ssl.SSLHandshakeException: javax.net.ssl.SSL...
Handbreadth asked 18/6, 2015 at 20:27
3
So I am using a JsonObjectRequest to send up a JsonObject to a rest call, but its returning a JsonArray rather then a JsonObject. Its giving me an error saying that it cannot parse the results from...
Brunelle asked 2/2, 2016 at 6:30
8
Solved
I'm using AndroidHive register login and it's working fine in example project of this login-register.
But after many attempts trying it with CardViews and other widgets, this error appears on the ...
Mildred asked 8/7, 2015 at 19:32
© 2022 - 2024 — McMap. All rights reserved.