我收到此错误
Error:(42, 38) error: cannot find symbol class newRequestQueue
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
Compilation failed; see the compiler error output for details.
在线:
RequestQueue queue=new Volley.newRequestQueue(this);
答案 0 :(得分:4)
发现问题。 new
不应出现在最后一行。
RequestQueue queue = Volley.newRequestQueue(this);