我正在尝试使用JsonArrayRequest参数附加UserId。但是当我尝试追加它时,它不会进入OnResponse函数。 你能救我吗?
代码
JsonArrayRequest InventoryModelReq = new JsonArrayRequest(url + Userid ,
new Response.Listener<JSONArray>()
{
@Override
public void onResponse(JSONArray response) {
Log.d("RESPONJSN",response.toString());
Log.d("JSONTEST", Userid);
//Log.d(TAG, response.toString());
hidePDialog();
}