EventBus – android消息总线

2020-05-14 10:03 阅读 1,418 views 次 EventBus – android消息总线已关闭评论

implementation 'org.greenrobot:eventbus:3.1.1'

EventBus.getDefault().register(this);

EventBus.getDefault().post(new MsgInitJumpAskDlg() );

@Override
protected void onDestroy(){
super.onDestroy();

EventBus.getDefault().unregister(this);

@Subscribe(threadMode = ThreadMode.MAIN)
public void onMessageEvent(MsgXieYi event) {
xieyi();
}

版权声明:本文著作权归原作者所有,欢迎分享本文,谢谢支持!
转载请注明:EventBus – android消息总线 | 文档
分类:电脑技术 标签:

评论已关闭!