当前位置: 首页 > 工具软件 > EventBus > 使用案例 >

EventBus传值

符俊材
2023-12-01

依赖:

compile 'org.greenrobot:eventbus:3.1.1'
发送:
EventBus.getDefault().postSticky(bean2);//任何类型都可以传
接收:
EventBus.getDefault().register(this);//注册(谁接收,谁注册)
@Subscribe(sticky = true, threadMode = ThreadMode.MAIN)//粘性的接收事件,一旦发现发送的内容就可以及时的接收
public void onEvent(ColorBean colorBean) {
    color = colorBean.getColor();
}

 @Override
public void onDestroy() {//反注册
    super.onDestroy();
    EventBus.getDefault().unregister(this);
}





 类似资料: