在Volley中找不到符号类newRequestQueue

时间:2015-12-26 18:34:55

标签: android android-volley

我收到此错误

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);

1 个答案:

答案 0 :(得分:4)

发现问题。 new不应出现在最后一行。

RequestQueue queue = Volley.newRequestQueue(this);