android-volley Questions
3
I keep getting MalformedStreamException
I am Running tomcat 9 with Java 8
Client is sending multipart file upload (picture and picture name)
Here is the function signature:
import org.springframew...
Saideman asked 9/5, 2018 at 2:20
6
Solved
I have a Login screen and upon success login, it finishes and shows another page that has information about the user.
I read about this post and also this post.
I also read a lot about how we exten...
Unanswerable asked 9/9, 2019 at 5:24
7
Solved
I've seen others come across this problem, but none of the posts have been able to assist me. I'm attempting to use Volley for my REST call library, and when I'm attempting to use a Put call with a...
Boehike asked 19/8, 2015 at 19:50
8
When I make a request in Volley, I'm receiving com.android.volley.ServerError and response code 400.
I'm doing something like this (generic example code):
final String param1 = "...";
fin...
Chadd asked 6/10, 2016 at 10:37
6
I am facing a strange issue, and I am not able to debug it out. I have implemented a logic for uploading stream of data and am using Volley for the same, I have customized a logic little bit in Hur...
Receivable asked 24/8, 2015 at 13:48
5
Solved
I'm having a problem in my Android app, in one of my fragments I use volley to do a network request:
JsonObjectRequest request = new JsonObjectRequest(
Request.Method.POST,
CustomNetworkManager....
Escort asked 16/3, 2016 at 17:53
9
I'm trying to load images from URL into girdview using Volley Library. For this I'm following this tutorial. When I run my project, it collects all URLs from server database and then store in array...
Manganite asked 13/10, 2015 at 11:35
7
Solved
I allways get this java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.Context android.content.Context.getApplicationContext()' on a null object reference
error while ...
Nash asked 24/6, 2016 at 13:30
3
Solved
I am doing an update on the old project & I don't have much knowledge of Android as of now. In project we have Comments section on product.
For comment after sending earlier we had return as 0...
Alfilaria asked 25/1, 2015 at 9:32
8
Solved
I'm sending an http request from Android Java using the Volley library to a c# backend. The backend application responds with a error code and description as intended, as well as a StatusDescriptio...
Lippi asked 7/3, 2016 at 10:19
6
I'm trying to connect to a REST-Server (which I created with Spark)
via Android.
I can send POST-Requests with POSTMAN (Chrome Addon) and get what
I want, but when I try to send the POST request fr...
Transship asked 20/8, 2016 at 20:57
4
'gradle' 'import' was done.
Then I got a problem. Help.
D:\bg.jou\GanggoContacts\build.gradle
Error:(25, 13)
Failed to resolve: com.android.volley:volley:1.1.0
<a href="openFile:D:/bg.jou/G...
Aphorize asked 7/2, 2018 at 0:58
13
Solved
I am rarely getting this error while making an API call.
java.lang.IllegalStateException: Fragment not attached to Activity
I tried putting the code inside isAdded() method to check whether frag...
Metallist asked 23/2, 2015 at 11:36
15
Solved
I am trying to send POST parameters in a Volley JsonObjectRequest. Initially, it was working for me by following what the official code says to do of passing a JSONObject containing the parameters ...
Bilabiate asked 4/4, 2015 at 5:12
6
Solved
I'm learning how to use Google Volley these days. It's very convenient for fast networking. It seems that all the requests are running in background in Volley. For example:
volleyRequestQueue.add(...
Vowelize asked 12/7, 2013 at 6:28
7
Solved
Hi I've a tabbed activity, and in the first tab I fetch data from server and show it in a recyclerview within card views. For fetching the data from server I use the volley library. I want to imple...
Predation asked 9/6, 2017 at 9:58
6
Solved
I have the code below (Volley Library By Google) to send a POST request to my php server and get information as a result. I tried the code without checking isset($_POST['id']) in php and the code w...
Aerostation asked 20/9, 2014 at 5:43
1
I am using a custom common class named APIHelper for Volley JsonObjectRequest for my all activities. I am handling all type of errors here. And setting positive response through interface and handl...
Hebron asked 4/5, 2022 at 17:0
4
Solved
I am trying to send a JSON Post request using Android Volley library but I dont seem to get the body of the json right and I get undefined body parameters on my web server. I need the json's parame...
Foxglove asked 8/5, 2016 at 13:27
12
Solved
I am trying to post some parameters to my rails API using Volley in Android. This is the code:
I tried with two log statements, one in getParams() and another in getHeaders(). The one in getHeade...
Casuistry asked 18/6, 2014 at 11:43
9
Solved
I've seen different advice on the best way to do this This question covers creating a jar. Elsewhere, I've seen advice to simply copy the volley source into your own project. This section on librar...
Refract asked 11/1, 2014 at 17:28
5
I want to use SSL Pinning in volley network library. Is there any way to implement SSL pinning with volley? Does volley provide this support for security improvements?
Cinque asked 28/1, 2015 at 11:23
3
Solved
public class getString {
String tag_string_req = "string_raq";
String url = "http://10.0.2.2/eat/locations/index.json";
String result="";
public String get_String() {
StringRequest strReq = new S...
Nepotism asked 23/1, 2015 at 22:50
3
Solved
I am trying to set the priority of my requests using the Volley library in Android. I cant find out how to set the requests priority.
StringRequest request = new StringRequest(Request.Method.GET,"...
Immigrate asked 14/7, 2013 at 16:7
8
I am getting image urls from server with square shape I have to make it to rounded corner images.Actually I am using volley library ,I know how to create round corner images using universal image l...
Painkiller asked 13/8, 2014 at 10:4
1 Next >
© 2022 - 2024 — McMap. All rights reserved.