Android REST Controller with Simple Cache Control Headers using Retrofit 1.9.0 + OkHttp 2.2.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<!-- google's material design colours from | |
http://www.google.com/design/spec/style/color.html#color-ui-color-palette --> | |
<!--reds--> | |
<color name="md_red_50">#FFEBEE</color> | |
<color name="md_red_100">#FFCDD2</color> | |
<color name="md_red_200">#EF9A9A</color> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OkHttpClient okHttpClient = new OkHttpClient(); | |
okHttpClient.interceptors().add(mRefreshAndRetryInterceptor); | |
mRestAdapter = new RestAdapter.Builder() | |
... | |
.setClient(new OkClient(okHttpClient)) | |
.build(); | |
private final Interceptor mRefreshAndRetryInterceptor = new Interceptor() { |
- ★ 推荐 网易开源镜像站: http://mirrors.163.com/
- 搜索开源镜像: http://mirrors.sohu.com/
- 北京交通大学: http://mirror.bjtu.edu.cn/cn/ <教育网荐>
- 兰州大学: http://mirror.lzu.edu.cn/ <西北高校FTP搜索引擎>
- 厦门大学: http://mirrors.xmu.edu.cn/
- 上海交通大学: http://ftp.sjtu.edu.cn/
- 清华大学: http://mirrors.tuna.tsinghua.edu.cn/
NewerOlder