Android EventBus使用

沈皓君
2023-12-01

介绍

EventBus是一款针对Android优化的发布/订阅事件总线。主要功能是替代Intent,Handler,BroadCast在Fragment,Activity,Service,线程之间传递消息.优点是开销小,代码更优雅。以及将发送者和接收者解耦。

基本使用

implementation 'org.greenrobot:eventbus:3.1.1'

1.定义一个事件类

public class EventBusType {
	 public EventBusType(){}
}

2.在要接收消息的页面注册

EventBus.register(this);

3.发送消息

eventBus.post(new EventBusType event);

4.接受消息的页面实现(共有四个函数,各功能不同,这是其中之一,可以选择性的实现,这里先实现一个):

public void onEvent(EventBusType event) {}

5.解除注册

eventBus.unregister(this);

 类似资料: