EventBus

Posted 鹏达君

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EventBus相关的知识,希望对你有一定的参考价值。

1.简介

EventBus是一个安卓端优化的publish/subscribe消息总线,简化了应用程序内各组件间、组件与后台线程间的通信。比如请求网络,等网络返回时通过Handler或Broadcast通知UI,两个fragment之间需要通过Listener通信,这些需求都可以通过EventBus实现。

 

2.下载地址

http://github.com/greenrobot/EventBus

 

3.使用步骤

 

 4.粘性事件的使用流程

 

以上是关于EventBus的主要内容,如果未能解决你的问题,请参考以下文章

EventBusEventBus 事件总线框架简介 ( EventBus 使用流程 )

EventBusEventBus 源码解析 ( 注册订阅者 | 订阅方法 | 查找订阅方法 )

EventBusEventBus 源码解析 ( 事件发送 | 线程池中执行订阅方法 )

EventBusEventBus 源码解析 ( 事件发送 | postToSubscription 方法 | EventBus 线程模式处理细节 )

EventBusEventBus 源码解析 ( 注册订阅者 | 注册订阅方法详细过程 )

EventBusEventBus 源码解析 ( 事件发送 | EventBus.post 方法 | EventBus.postSingleEvent 方法 )