我目前正在为我的网站开发Android应用程序。我发现我必须使用Volley Library来解析我的Json数据,但是我在这里遇到的问题是我的代码的错误部分
StringRequest strReq = new StringRequest(Request.Method.POST, AppConfig.URL_REGISTER, new Response.Listener<String>() {
@Override public void onResponse(String response) {}
}, new Response.ErrorListener() {
@Override public void onErrorResponse(VolleyError error) {}
})
我总是得到这些错误:
Method onResponse and onErrorResponse doesnt override from super class and Theres no applicable constructor to '(int, java.lang.String, com.app.fxq.LoginActivity(annonymus), com.app.fxq.LoginActivity(annonymus))'
帮助我如何纠正此错误。感谢