android – Subscriber类没有调用Event的公共方法

前端之家收集整理的这篇文章主要介绍了android – Subscriber类没有调用Event的公共方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用绿色Robot Eventbus时出错了
E/AndroidRuntime(2537): Caused by: de.greenrobot.event.EventBusException: Subscriber class com.example.MyActivity has no public methods called onEvent

细节:

我正在加载Activity,其中包含一个包含10个子片段的片段,而不是调用EventBus.getDefault().register(this);在每个嵌套(子)片段中,我在该片段的父活动中调用该寄存器.

解决方法

通过声明onEventMainThread方法和EventBus.getDefault().register(this)解决;在同一个片段中(应该在同一个类中声明)
原文链接:https://www.f2er.com/android/309671.html

猜你在找的Android相关文章