我在片段的onActivityCreated中使用了JsonObject请求。我将jsonobject请求添加到请求队列。队列根本没有被执行。我已将Log语句放在Onresponse和Onerrorresponse中。它就像请求根本没有开始。以下是我的代码。如果我做错了,请建议。我需要将一个字符串传递给服务器。所以我把它放在一个jsonobject jlistname中。服务器将返回一个jsonobject,所以使用jsonobjectrequest而不是stringrequest来接收它。
RequestQueue rq;
JsonObjectRequest jsObjRequest;
JSONObject jlistname = new JSONObject();
String listname="list1";
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
searchitembtn=(ImageButton) getView().findViewById(R.id.searchitembtn);
rq = Volley.newRequestQueue(getActivity());
try {
jlistname.put("listname", listname);
} catch (JSONException e) {
e.printStackTrace();
}
jsObjRequest = new JsonObjectRequest(Request.Method.POST, getlistitems, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.i(TAG, "im in onresponse" + response);
System.out.println(response);
}
},
new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.i(TAG, "im in onerrorresponse" + error);
}
}) {
@Override
public byte[] getBody() {
return jlistname.toString().getBytes();
}
@Override
public String getBodyContentType() {
return "application/json";
}
@Override
public Map<String, String> getHeaders() throws AuthFailureError {
Map<String, String> headers = new HashMap<String, String>();
headers.put("Accept", "application/json");
return headers;
}
};
if (listtype==100||listtype==101){
-----------------------
}
else if(listtype==102){
Log.i(TAG,"mylisttypeis102: "+listtype);
Log.i(TAG,"im before adding o request queue"+jsObjRequest);
rq.add(jsObjRequest);
Log.i(TAG, "im after adding o request queue"+rq);
}
else {
-------------------
}
}
showLists();
}
更新:我在布局中添加了一个按钮,并在按钮的onclicklistener中保留了rq.add(jsObjRequest);
然后我正确得到了答案。
但我真的不希望点击响应。我希望在按照onActivityCreated中的代码加载片段时生成响应。
有人可以解释为什么我只使用听众得到回应?
答案 0 :(得分:0)
将请求添加到RequestQueue
rq.add(jsonObject);