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

听闻少年二字,当与平庸相斥。这篇文章主要讲述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) {

}

 
解除注册
【Android 使用EventBus发送消息接收消息】eventBus.unregister(this);  






    推荐阅读