已采纳回答 / qq_绝影_6
StringRequest请求:适用于不清楚请求结果时使用;JsonObjectRequest和JsonArrayRequest:适用于清楚自己所请求数据所对应的类型。这是老师的原话(http://www.imooc.com/video/9141)。个人喜欢用StringRequest,因为可以做一个通用的网络请求框架。
2016-11-08
已采纳回答 / vveicc
建议不要手动调用 RequestQueue 的 start() 方法,引起的问题“可能会报com.android.volley.NoConnectionError: java.io.InterruptedIOException”,然后就内容加载失败。。。因为在 Volley.newRequestQueue() 方法中,已经调用了 start() 方法。
2016-09-29
已采纳回答 / 谭东jay
Map<String,String> map=new HashMap<String,String>(); map.put("token", "AbCdEfGh123456"); JSONObject params=new JSONObject(map); RequestQueue queue = Volley.newRequestQueue(this); String url = "http://m.weat...
2015-08-13
已采纳回答 / Link0
VolleyInterface 构造函数中的两个参数没必要吧??Listener<String> listener, ErrorListener errorListener已经在方法中loadingListener(), loadingErrorListener() new了啊。
2015-08-07