本文主要是介绍Android使用RxJava+Retrofit请求网络的小Demo,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、先新建项目,然后在项目中添加依赖
compile 'com.squareup.retrofit2:retrofit:2.1.0'compile 'com.squareup.retrofit2:converter-gson:2.1.0'compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'compile 'io.reactivex:rxandroid:1.2.0'
2、创建一个接口 专门用来管理所有的网络请求 在这个接口里面,定义所有的请求
public interface RetrofitService {@GET("book/search")Observable<Book> getSearchBook(@Query("q") String name,@Query("tag") String tag,@Query("start") int start,@Query("count") int count);
}
3、在Activity中初始化 并去订阅请求被观察者的变化
private void requestData() {Retrofit retrofit = new Retrofit.Builder().baseUrl("https://api.douban.com/v2/").addConverterFactory(GsonConverterFactory.create(new GsonBuilder().create())).addCallAdapterFactory(RxJavaCallAdapterFactory.create()) // 支持Rxjava.build();RetrofitService service = retrofit.create(RetrofitService.class);Observable<Book> observable = service.getSearchBook("金瓶梅", null, 0, 1);observable.subscribeOn(Schedulers.io()) // 请求时间发生在io线程.observeOn(AndroidSchedulers.mainThread()) // 请求成功之后在主线程更新ui.subscribe(new Observer<Book>() { // 订阅@Overridepublic void onCompleted() {}@Overridepublic void onError(Throwable e) {e.printStackTrace(); //请求过程中发生错误}@Overridepublic void onNext(Book book) {textView.setText(book.getBooks().get(0).getAuthor() + "");}});}
这是仿着别人写的 自己学习的笔记,集成起来就是这么简单 操作也是这样的
现在流行的MVP+RxJava+Retrofit主要是为了解耦,将所有的请求网络的东西都放在了retrofitService中,减少了Activity中的代码量,如果再加上MVP将所有的处理都放在presenter中,Activity中就只剩下更新UI了,整个项目将变得无比的简洁。
当然,关于使用mvp,项目中,并不是所有的界面都要用mvp,这样会出现很多的类,复杂界面使用mvp,简单逻辑的界面,都写在activity中就行了(个人观点),这一系列的作用就是为了解耦……
这篇关于Android使用RxJava+Retrofit请求网络的小Demo的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!