Android
51_武艺
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MVP + Retrofit + RaJava
/** * 作者:create by YW * 日期:2018.01.04 15:14 * 描述: */ public class RetrofitFactory { private static final String TAG = "YW"; public static final String BASE_URL = "http://api.ihuxin.net/";原创 2018-01-04 16:53:06 · 446 阅读 · 0 评论 -
Retrofit
Retrofit A type-safe HTTP client for Android and Java Introduction public interface GitHubService { @GET("users/{user}/repos") Call> listRepos(@Path("user") String user); } The Retrofit翻译 2018-01-05 12:30:14 · 284 阅读 · 0 评论
分享