Android 使用EventBus发送消息接收消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 使用EventBus发送消息接收消息相关的知识,希望对你有一定的参考价值。

基本使用

自定义一个类

public class LoginEvent {
private String code;//是否成功

public LoginEvent(String code) {
this.code = code;
}

public String getCode() {
return code;
}

public void setCode(String code) {
this.code = code;
}
}

在要接收消息的页面注册:

   eventBus.register(this);  

public void onEventMainThread(LoginEvent event) {

}

 

解除注册

eventBus.unregister(this);  





以上是关于Android 使用EventBus发送消息接收消息的主要内容,如果未能解决你的问题,请参考以下文章

Android EventBus源码流程解析

Android EventBus源码流程解析

Android项目实战(十三):浅谈EventBus

即时聊天APP - 消息的接收以及EventBus使用

EventBus的使用

EventBus使用详解——初步使用EventBus