这里以post请求说明,get请求相似设置请求头及超时。
1.自定义request,继承com.android.volley.Request
2.构造方法实现(basecallback,为自定义的监听,实现Response.Listener,ErrorListener接口)--post请求
public BaseRequest(String url,String params, BaseCallback<T> callback) { super(Method.POST, url, callback); this.callback = callback; this.params = params; Log.e(TAG, "request:" + params); setShouldCache(false); }
3.请求头设置:重写getHeaders方法
@Override public Map<String, String> getHeaders() throws AuthFailureError { Map<String, String> headers = new HashMap<String, String>(); headers.put("Charset", "UTF-8"); headers.put("Content-Type", "application/x-javascript"); headers.put("Accept-Encoding", "gzip,deflate"); return headers; }
设置字符集为UTF-8,并采用gzip压缩传输
4.超时设置:重写getRetryPolicy方法
<span style="color:#cc0000;">非常不好意,之前写的时候 确实没有研究透,后面发现这个问题,没有去纠正博客,对不起了 >_<.,</span>
<span style="color:#cc0000;">超时设置可以直接通过setRetryPolicy设置</span>
5.请求参数组装:重写getBody方法
@Override public byte[] getBody() throws AuthFailureError { return params == null ? super.getBody() : params.getBytes(); }
结合上一篇gzip响应解析数据即可实现现在常见的http实现json数据的gzip传输
在使用Volley库时推荐大家使用最新库 https://github.com/mcxiaoke/android-volley(OOM等问题)
为表达我的歉意,列举分享一些有用的库个资源-_-:
图片裁剪 crop :https://github.com/jdamcd/android-crop
图片加载库glide-google推荐:https://github.com/bumptech/glide
网络状态监测-facebook:https://github.com/facebook/network-connection-class
RxAndroid:响应式编程 https://github.com/ReactiveX/RxAndroid
通信库AndroidAsync/ION,异步socket/web socket,http client+server https://github.com/koush/AndroidAsync
trinea相关开源分析:https://github.com/Trinea/android-open-project(各种组件),www.codekk.com,http://www.trinea.cn/
开源播放器:
ijkplayer 现在应用很多:https://github.com/Bilibili/ijkplayer
vlc:http://git.videolan.org/