RxAndroid的环境搭建(二)

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);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值