Skip to content

Commit 103b115

Browse files
committed
add retrofit part
1 parent c5eec13 commit 103b115

2 files changed

Lines changed: 37 additions & 0 deletions

File tree

Android加强/Retrofit详解.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Retrofit详解
2+
===
3+
4+
之前写过一篇文章[volley-retrofit-okhttp之我们该如何选择网路框架](https://github.com/CharonChui/AndroidNote/blob/master/Android%E5%8A%A0%E5%BC%BA/volley-retrofit-okhttp%E4%B9%8B%E6%88%91%E4%BB%AC%E8%AF%A5%E5%A6%82%E4%BD%95%E9%80%89%E6%8B%A9%E7%BD%91%E8%B7%AF%E6%A1%86%E6%9E%B6.md)来分析`Volley``Retrofit`之间的区别。之前一直用`Volley`比较多。但是随着`Rx`系列的走红,目前越来越多的项目使用`RxJava+Retrofit`这一黄金组合。而且`Retrofit`使用注解的方式比较方便,今天简单的来学习记录下。
5+
6+
- 有关更多`Volley`的知识请查看[Volley源码分析](https://github.com/CharonChui/AndroidNote/blob/master/Android%E5%8A%A0%E5%BC%BA/Volley%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90.md)
7+
- 有关注解更多的知识请查看[注解使用](https://github.com/CharonChui/AndroidNote/blob/master/Android%E5%8A%A0%E5%BC%BA/%E6%B3%A8%E8%A7%A3%E4%BD%BF%E7%94%A8.md)
8+
- 有关更多[RxJava]的介绍请查看[Rx详解系列](https://github.com/CharonChui/AndroidNote/blob/master/Android%E5%8A%A0%E5%BC%BA/RxJava%E8%AF%A6%E8%A7%A3(%E4%B8%8A).md)
9+
10+
简介
11+
---
12+
13+
[Retrofit](http://square.github.io/retrofit/)
14+
15+
> A type-safe HTTP client for Android and Java
16+
17+
18+
19+
20+
---
21+
22+
- 邮箱 :charon.chui@gmail.com
23+
- Good Luck!
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
目前流行的开发组合
2+
===
3+
4+
5+
目前主流的一套框架就是`Retrofit + RxJava + RxBinding + Dagger2`
6+
7+
架构上面目前是`MVP`居多。
8+
9+
10+
11+
---
12+
13+
- 邮箱 :charon.chui@gmail.com
14+
- Good Luck!

0 commit comments

Comments
 (0)