本文介绍了无法解析符号"RequestQueue"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是android studio和volley库的新手,请多多包涵.
I am new to android studio and volley library so please bear with me.
我已经通过GitHub添加了volley库,然后添加了以下行来构建gradle文件:
I've added volley library by GitHub and then and added this line to build gradle file:
compile 'com.android.support:appcompat-v7:23.0.1'
现在我正在尝试一些有关api请求和响应的教程,但是由于某些原因,我无法创建 RequestQueue
的实例,为什么?我正在使用Android 4.0.3 IceCreamSandwish
And now I am trying some tutorials about request and response from api, but for some reason I cannot make an instance of RequestQueue
why?I am using Android 4.0.3 IceCreamSandwish
谢谢
推荐答案
将以下内容添加到您的build.gradle文件中
add following to your build.gradle file
compile 'com.mcxiaoke.volley:library:1.0.19'
这篇关于无法解析符号"RequestQueue"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!