EventBus的使用初试

当一个Android应用功能越来越多的时候,保证应用的各个部分之间高效的通信将变得越来越困难。如何优雅地解决这个问题?这时候,就需要使用到EventBus。


EventBus是GreenRobot出品的Android系统的一个Event Bus类库,使用起来和之前我们所介绍的Square的Otto差不多,都是用来简化应用组件之间的通信。

1、下载EventBus的类库

https://github.com/greenrobot/EventBus

2、基本使用

  1. Implement any number of event handling methods in the subscriber:接受发送的消息
    public void onEvent(AnyEventType event) {}
  2. Register subscribers:注册
    eventBus.register(this);
  3. Post events to the bus:发送消息
    eventBus.post(event);
  4. Unregister subscriber:解除注册
    eventBus.unregister(this);
1、在你要接受消息的组件中,例如Activity中,注册EventBus

	@Override
	protected void onCreate(Bundle arg0) {
		super.onCreate(arg0);
		EventBus.getDefault().register(this);
	}

	@Override
	protected void onDestroy() {
		super.onDestroy();
		EventBus.getDefault().unregister(this);
	}
	
	public void onEvent(PhotoSelectionRemovedEvent event) {
//        refreshSelectedPhotosTitle();
//        refreshUploadActionBarView();
		Log.i("LogUtil", "LogUtil....onEvent");
    }

2、在其他的组件中,你需要通知注册了的Activity时,只需要EventBus.getDefault().post(new PhotoSelectionRemovedEvent());上面的Activity中onEvent方法中就可以接受到消息了,去处理一些事情


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值