Android EventBus使用注意事项¶
使用EventBus 3.0.0 时
除了注册和注销EventBus外,同时还需要使用它的接收方法
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
EventBus.getDefault().register(this);
// ......
}
@Subscribe (threadMode = ThreadMode.MAIN)
public void onEventXYZ(EventMsg msg) {
// Must use EventBus function
}
@Override
protected void onResume() {
super.onResume();
}
@Override
protected void onDestroy() {
super.onDestroy();
EventBus.getDefault().unregister(this);
}
onEventXYZ(EventMsg msg)
是接收事件的方法。如果没有接收Event的方法,(荣耀和小米)实测会报错
Java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.rustfisher.ndkproj/com.rustfisher.ndkproj.MainActivity}:
org.greenrobot.eventbus.EventBusException: Subscriber class com.rustfisher.ndkproj.MainActivity and
its super classes have no public methods with the @Subscribe annotation
本站说明
一起在知识的海洋里呛水吧。广告内容与本站无关。如果喜欢本站内容,欢迎投喂作者,谢谢支持服务器。如有疑问和建议,欢迎在下方评论~