1.在module的build.gradle文件进行依赖RxAndroid库
/*RxAndroid所依赖的库*/compile 'io.reactivex:rxandroid:1.2.1'
compile 'io.reactivex:rxjava:1.1.6'
2.如果使用Lambda等Java8新特性,可以配置java8的环境,具体看java8笔记
## RxJava在Android中与其他框架的融合 (了解)
* RxBinding: `https://github.com/JakeWharton/RxBinding`
//添加依赖
compile 'com.jakewharton.rxbinding:rxbinding:0.4.0'
// 相关代码
Button button = (Button)findViewById(R.id.bt);
RxView.clickEvents(button) // 设置点击事件
.subscribe(new Action1<ViewClickEvent>() {
@Override
public void call(ViewClickEvent event) {
// Click handling
}
});
* Retrofit: `https://github.com/square/retrofit`
// 添加依赖
compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'
compile 'com.squareup.retrofit2:adapter-rxjava:2.0.0-beta4'
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
// 相关代码
new Retrofit.Builder()
.baseUrl("http://192.168.1.113:8080/")
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create())
.build()
.create(RxDemoApi.class);