EventBus广播传值(不管在哪个界面传 .在哪个界面接收都可行)
首先下载EventBus.jar包
A 页面得到值
如:public void onEventKeyBorad(String message){
}
2:默认提供的方法EventBus.getDefault().register(this);
实现接收方法:
public void onEventMainThread(int i){
}
B页面需要传值
1:EventBus.getDefault().post(item);
注意:最后需要在onDestory()方法中去注销广播
EventBus.getDefault().unregister(this);// 反注册EventBus