可能是我的问题有点天真,因为我是Andorid的新手。我正在尝试使用类JsonRequestArray发送GET请求。我想随请求发送一些参数。我发现一些答案说要使customRequest。但是我只想使用JsonRequestArray类。从Androids tutorial看来,我们需要将某些内容传递给构造函数,以代替null:

JsonObjectRequest jsObjRequest = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>()


但是不清楚设置参数的参数格式应该是什么。我试图搜索该类的JSONObjectArray的构造函数,但找不到它。任何帮助,将不胜感激。

最佳答案

不幸的是,android-volley没有文档来源,或者至少没有我能找到的。因此,我在link处查看了源代码。

以下是构造方法之一,您可以在jsonRequest中传递参数。

JsonArrayRequest(int method, String url, JSONArray jsonRequest,
                        Listener<JSONArray> listener, ErrorListener errorListener)


让我知道您是否需要更多帮助。

关于java - Android类JsonRequest及其子类JsonRequestArray和JsonRequestObject,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34323381/

10-10 03:44