首先說明,之前我用eventBus的jar包寫得項目demo,前幾天就寫了一個EventBus的實例,此次我沒用jar包,直接用gradle引用的,但是demo寫完了,報錯:
its super classes have no public methods with the @Subscribe annotation
因此就用google搜索了一下,找到了解決方法,那就是在接受者
onEvent()方法添加註解: @Subscribe 而後問題解決,如gradle
/** * * 從發佈者那裏獲得eventbus傳送過來的數據 * * 加上@Subscribe以防報錯:its super classes have no public methods with the @Subscribe annotation * * @param event */ @Subscribe public void onEvent(String event){ tv.setText(event); }
效果圖以下:
google