怕自己以后忘了怎么用。。。 一.背景(直接从github直接抄过来) github地址:https://github.com/greenrobot/EventBus EventBus is a publish/subscribe event bus optimized for Android. EventBus... simplifies the communication
http://greenrobot.org/eventbus/documentation/priorities-and-event-cancellation/ 思路:设置订阅者的优先级,优先级高的接收事件处理,取消事件,事件无法继续往下传递,达到指定接收者的目的。 1.Subscriber Priorities You may change the order of eve
应用场景 当我们进行项目开发的时候,往往需要应用内部的各组件之间进行通信,比如在某个组件中进行数据处理,当数据处理完毕后需要通知其他组件等等比较常见的作法就是直接调用目标函数进行处理;亦或实现一个观察者模式,将所有需要通知的对象统一注册到一个地方集中进行通知EventBus就是基于观察者模式实现的,但在使用上更加简捷EventBus维护在google的guava包中(非安卓端) Even