python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to send JSON body with GET method in volley library?
I am trying to send JSON body with GET request using volley
{"codes":["T4CFNT7HGBE8DXY3HJHV9DKUV","UU4VEYEEA9UPYC96LE7JJF9HC"]}
The api is working fine in Postman, but c...
Archi
Votes: 0
Answers: 0
How do I clean this Volley Handler memory leak?
(I know Volley's already deprecated and all, but I still have to use it for my project.) Anyways, I have a project where I'm scraping the Thingspeak API via REST. My current implementation is using a ...
Aeternis
Votes: 0
Answers: 0
How fix " Not a primitive array"
I trying to parse this json.
[
{
"id": 2,
"name": "612",
"code": "auditorium 612"
},
{
"id": 3,
...
PluggaRose
Votes: 0
Answers: 1
My current code takes a JSON response, parses it, then displays the value to an activity, all in one function. How do I separate them into threads?
(note: I'm using the Android Volley library for the network connection)
public class PostureActivity extends AppCompatActivity {
private static final String LOG_TAG = PostureActivity.class.getName();
...
Aeternis
Votes: 0
Answers: 0