#Android网络框架Volley
我们先来认识一下Volley:
http://blog.csdn.net/jdsjlzx/article/details/40738181

how to get started
Volley官方源码:
https://android.googlesource.com/platform/frameworks/volley/

Volley发布现场
Google I/O 2013 - Volley: Easy, Fast Networking for Android视频
https://www.youtube.com/watch?v=yhv8l9F44qo&feature=player_embedded
Android Studio如何导入Volley?
Gradle Scripts-->build.gradle,添加如下一行代码:

compile 'com.mcxiaoke.volley:library:1.0.+'
Volley在线帮助文档——

Volley 在线帮助文档
代码小困惑——
#Q1 Cannot resolve constructor 'JsonObjectRequest...'

Cannot resolve constructor 'JsonObjectRequest...'
Solution:
将JsonObjectRequest的参数"null"强转为String类型-_-||

将null强转为String类型
#Q2 AppController.getInstance().addToRequestQueue(req);——NullPointerException
使用AppController时出现空指针异常

NullPointerException

AppController继承Application
Solution:
在manifest的application节点里添加如下一句:
android:name="<packagename>.AppController"

在manifest里配置AppController

数据获取中。。。
=============================================
问题积累中-_-||。。。
