Retrofit是一個(gè)當(dāng)前很流行的網(wǎng)絡(luò)請(qǐng)求庫(kù), 官網(wǎng)的介紹是: "Type-safe HTTP client for Android and Java". 本文介紹Retrofit的使用.
先介紹單獨(dú)使用Retrofit進(jìn)行網(wǎng)絡(luò)請(qǐng)求, 后面主要介紹和RxJava結(jié)合的請(qǐng)求, 有實(shí)例代碼.

Retrofit單獨(dú)使用

Setup

首先在manifest中加上網(wǎng)絡(luò)權(quán)限:

<uses-permission android:name="android.permission.INTERNET" />

然后在app/build.gradle中加上依賴:

compile 'com.squareup.retrofit2:retrofit:2.1.0' compile 'com.google.code.gson:gson:2.8.0' compile 'com.squareup.retrofit2:converter-gson:2.1.0'

準(zhǔn)備API和model類

本例子中使用Github API做請(qǐng)求.

以Github的Root Endpoint為例:
https://api.github.com.
首先, 我們?cè)诿钚邪l(fā)送:

網(wǎng)友評(píng)論