Using Custom Volley Post Doesn't Return Anything
I'm trying to use a custom Class that extend the JsonRequest class to send a JSONArrayRequest using POST and a parameter. public class MethodJsonArrayRequest extends JsonRequest<
Solution 1:
user98239820 answer here was extreamly useful. Instead of extending JsonRequest<JSONArray>
class he extended the Request
class. I also had to change his new JSONObject
to new JSONArray
to fit my needs, but by pointing to that class works perfectly.
Post a Comment for "Using Custom Volley Post Doesn't Return Anything"