mirror of
https://github.com/sunflower-zyb/Blog.git
synced 2025-06-08 15:34:38 +08:00
31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
|
||
#Retrofit
|
||
|
||
简要说明
|
||
|
||
## 基础篇
|
||
|
||
[使用Retrofit请求API数据-codepath教程](http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/1016/3588.html)
|
||
|
||
初学者可以看此篇教程。
|
||
|
||
|
||
[用 Retrofit 2 简化 HTTP 请求-来自 Droidcon NYC 2015 一个演讲](http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/1109/3662.html)
|
||
|
||
来自[Jake Wharton](https://github.com/JakeWharton)大神的一次分享,覆盖了所有 Retrofit 2.0 的新特性,全面介绍了 Retrofit 2.0 工作原理。
|
||
|
||
|
||
## 源码解析
|
||
[Android网络框架源码分析二---Retrofit](http://www.jianshu.com/p/07dac989272c)
|
||
|
||
Retrofit源码解析,写的很详细。需要先了解动态代理以及注解相关知识。
|
||
|
||
[Retrofit源码解析](http://frodoking.github.io/2015/05/16/android-retrofit/)
|
||
|
||
Retrofit源码解析,不是根据最新版(2.0.0-beta3)。
|
||
|
||
[迷之RxJava(四)—— Retrofit和RxJava的基情](http://www.jianshu.com/p/ed0641d78f99)
|
||
|
||
看完RxJava之后,可以再看这一篇。主要介绍了RxJavaCallAdapterFactory——用来把Retrofit转成RxJava可用的适配类。
|
||
|