作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 GreenRobot EventBus 将事件从 Activity 发布到 Service .但是当我尝试发布事件时,logcat 显示以下消息:
No subscribers registered for event class com.example.dhaval.homeexamples.CallBackEvent
No subscribers registered for event class org.greenrobot.eventbus.NoSubscriberEvent
这是我在 Activity 中用于发布事件的代码:
EventBus.getDefault().post(new CallBackEvent(1));
以下是我的CallBackEvent
:
public class CallBackEvent {
private int a;
public CallBackEvent(int a) {
this.a = a;
}
}
以下是我的具有订阅者的服务类:
public class BackService extends Service{
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
super.onCreate();
EventBus.getDefault().register(this);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return super.onStartCommand(intent, flags, startId);
}
@Override
public void onDestroy() {
super.onDestroy();
EventBus.getDefault().unregister(this);
}
@Subscribe
public void onEvent(CallBackEvent callBackEvent){
Log.d("service", "CallBackEvent : called");
}
}
为什么会这样?因为当我将事件从服务发布到 Activity 时它工作正常。但是,当我尝试使用此代码(从服务到 Activity )时,它不起作用。
最佳答案
问题我解决了,代码如下:
if(!EventBus.getDefault().hasSubscriberForEvent(CallBackEvent.class)) {
EventBus.getDefault().register(this);
}
关于android - GreenRobot EventBus 错误 : No subscribers registered for event,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37480413/
我是一名优秀的程序员,十分优秀!