EventBus 3.0 在页面间跳转接收不到消息解决方法
使用EventBus代替广播,intent传递消息等,大大减少了代码量,提升编码速度,同时整体的代码优雅型也得到提高。
使用过程中遇到一些小问题,在当前Activity中使用:
EventBus.getInstance().post(new Test("eventbus发送消息成功!"));
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
EventBus.getIntsance().register(this);
...
}
@Subscribs(threadMode = ThreadMode.MAIN)
public void onMain(Test test){
Log.i("test", test);
}
在控制台打印出来的信息是"eventbus发送消息成功!"。
如果在另外一个Activity,SecondActivity跳转的时候使用EventBus就会接受不到报错No subscribers registered for event class
,原因就是跳转SecondActivity发生在EventBus注册之前,消息已经发送,因此才会出现上面的错误。
解决方案:使用粘性发送消息的方式
EventBus.getInstance().postSticky(new Test("发送成功"));
当然在接收的时候指定方式sticky = true
即可,如
@Subscribs(threadMode = ThreadMode.MAIN, sticky = true)
public void onMain(Test test){
Log.i("test", test);
}
粘性发送消息的意思是如果没有接收到消息还会继续发送最新发送过的消息。
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/18/solution-for-eventbus-3-not-receiving-messages-when-jumping-between-pages/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论