标签:HERE 观察 传递 2018年 interface block 使用详解 通讯 ace
?(^∇^*) 五一假期在家无事,新项目中用的是RxJava2+EventBus感觉还不错,趁这闲暇总结下EventBus
EventBus是一个基于观察者模式的Android事件发布/订阅框架,通过解耦发布者和订阅者简化Android事件传递,这里的事件可以理解为消息。事件传递既可以用于Android四大组件间通讯,也可以用于异步线程和主线程间通讯等。
EventBus的出现,是为了解决传统的通过Interface的事件传递所出现的回调地狱的问题,相比之下EventBus的有点是代码简洁,使用简单,并将事件发布和 订阅充分解耦。
EventBus由三部分组成:event事件、subscriber订阅者、publisher发布者。
EventBus 官网地址:http://greenrobot.org/eventbus/
EventBus GitHub :https://github.com/greenrobot/EventBus
添加依赖(两种方式):
//Via Gradle
compile ‘org.greenrobot:eventbus:3.1.1‘
<!--Via Maven--> <dependency> <groupId>org.greenrobot</groupId> <artifactId>eventbus</artifactId> <version>3.1.1</version> </dependency>
事件是POJO(普通的旧Java对象),没有任何特定的要求。
public class MessageEvent { public final String message; public MessageEvent(String message) { this.message = message; } }
// This method will be called when a MessageEvent is posted (in the UI thread for Toast) @Subscribe(threadMode = ThreadMode.MAIN) public void onMessageEvent(MessageEvent event) { Toast.makeText(getActivity(), event.message, Toast.LENGTH_SHORT).show(); } // This method will be called when a SomeOtherEvent is posted @Subscribe public void handleSomethingElse(SomeOtherEvent event) { doSomethingWith(event); }
订阅者需要registe和unregist
待续。。2018年4月29日21:00:47
标签:HERE 观察 传递 2018年 interface block 使用详解 通讯 ace
原文地址:https://www.cnblogs.com/jooy/p/8971936.html