依赖:
compile 'org.greenrobot:eventbus:3.1.1' 发送:EventBus.getDefault().postSticky(bean2);//任何类型都可以传接收:EventBus.getDefault().register(this);//注册(谁接收,谁注册)@Subscribe(sticky = true, threadMode = ThreadMode.MAIN)//粘性的接收事件,一旦发现发送的内容就可以及时的接收 public void onEvent(ColorBean colorBean) { color = colorBean.getColor(); } @Override public void onDestroy() {//反注册 super.onDestroy(); EventBus.getDefault().unregister(this); }