EventBus3.0使用注意事项

1.调试过程中出现Caused by: org.greenrobot.eventbus.EventBusException: Subscriber class com.my.MainActivity and its super classes have no public methods with the @Subscribe annotation
开始的思路是找带@Subscribe注解的方法是否有不是public的,但我已经把所有的Event方法注释掉了,不可能存在不是public的方法。于是开始调查eventbus的源码,发现SubscriberMethodFinder.java 的67行是如下判断代码:

if (subscriberMethods.isEmpty()) {
    throw new EventBusException("Subscriber " + subscriberClass
          + " and its super classes have no public methods with   the @Subscribe annotation");
} else {
    METHOD_CACHE.put(subscriberClass, subscriberMethods);
    return subscriberMethods;
}

原来他只要判断没有找到订阅方法,不管是添加注解而不是public方法的,还是根本就没有订阅方法的,都抛出这个提示。

你可能感兴趣的:(Android)