背景
今年Android移動各大入口網站最熱門的無非RxJava-Retrofit-OkHttp,所以準備強勢入手一波封裝,解決程式碼複用性的問題,這篇先先來個簡單的壓壓驚,看看RxJava-Retrofit結合的使用基礎要點,後續會出一些列的專欄優化一套完善的請求封裝。
效果
懶人簡單的使用方式
為什麼稱為懶人,因為你什麼都不用做,直接按照一般案例寫rx和retrofit的使用
- 引入需要的包
/*rx-android-java*/
compile 'com.squareup.retrofit:adapter-rxjava:+'
compile 'com.trello:rxlifecycle:+'
compile 'com.trello:rxlifecycle-components:+'
/*rotrofit*/
compile 'com.squareup.retrofit2:retrofit:+'
compile 'com.squareup.retrofit2:converter-gson:+'
compile 'com.squareup.retrofit2:adapter-rxjava:+'
compile 'com.google.code.gson:gson:+'複製程式碼
建立一個service定義請求的介面
/** * service統一介面資料 * Created by WZG on 2016/7/16. */ public interface HttpService { @POST("AppFiftyToneGraph/videoLink") Observable<RetrofitEntity> getAllVedioBy(@Body boolean once_no); }複製程式碼
建立一個retrofit物件
//手動建立一個OkHttpClient並設定超時時間
okhttp3.OkHttpClient.Builder builder = new OkHttpClient.Builder();
builder.connectTimeout(5, TimeUnit.SECONDS);
Retrofit retrofit = new Retrofit.Builder()
.client(builder.build())
.addConverterFactory(GsonConverterFactory.create())
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
.baseUrl(HttpManager.BASE_URL)
.build();複製程式碼
- http請求處理
// 載入框
final ProgressDialog pd = new ProgressDialog(this);
HttpService apiService = retrofit.create(HttpService.class);
Observable<RetrofitEntity> observable = apiService.getAllVedioBy(true);
observable.subscribeOn(Schedulers.io()).unsubscribeOn(Schedulers.io()).observeOn(AndroidSchedulers.mainThread())
.subscribe(
new Subscriber<RetrofitEntity>() {
@Override
public void onCompleted() {
if (pd != null && pd.isShowing()) {
pd.dismiss();
}
}
@Override
public void onError(Throwable e) {
if (pd != null && pd.isShowing()) {
pd.dismiss();
}
}
@Override
public void onNext(RetrofitEntity retrofitEntity) {
tvMsg.setText("無封裝:\n" + retrofitEntity.getData().toString());
}
@Override
public void onStart() {
super.onStart();
pd.show();
}
}
);複製程式碼