使用绿色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