码迷,mamicode.com
首页 > 其他好文 > 详细

浅谈开源类库EventBus的消息机制

时间:2015-02-25 17:11:49      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:android   eventbus   消息机制   

EventBus是基于Otto的消息发送机制,经过开源大神们的封装,已经越来越好用了。


发送消息(必须在主线程中发送消息,发消息可以不用注册bus)
EventBus.getDefault().post();


接受消息(必须在主线程中接受消息,接受消息必须注册bus)
public void onEvent() {}


注册bus
EventBus.getDefault().register(this);


ex:

package com.woyou.utils.eventbus;

/**
 * otto事件抽象
 * 
 * @author longtao.li
 * 
 */
public interface IEvent<T> {
	
	int getId();

	void setId(int id);

	T getData();
}

package com.woyou.utils.eventbus;

import com.woyou.model.Goods;

/**
 * 显示属性layout的事件通知
 * @author longtao.li
 *
 */
public class EventShowProp implements IEvent<Goods>{

	private Goods goods;
	public EventShowProp(Goods goods) {
		this.goods = goods;
	}
	@Override
	public int getId() {
		// TODO Auto-generated method stub
		return 0;
	}

	@Override
	public void setId(int id) {
		// TODO Auto-generated method stub
		
	}

	@Override
	public Goods getData() {
		return goods;
	}
	
	

}

EventShowProp eventShowProp = new EventShowProp(goods);
EventBus.getDefault().post(eventShowProp);

	/**
	 * 显示选择属性布局
	 * @param event
	 */
    EventShowProp eventShowProp;
	public void onEvent(EventShowProp event){
		if( eventShowProp == event ){
			return;
		}
		Log.i(TAG, "EventShowProp");
		this.eventShowProp = event;
		propertylayout.showPropView(event.getData(), null);
		propertylayout.setVisibility(View.VISIBLE);
	}

关于它的jar包,地址:http://download.csdn.net/detail/u012301841/8456735

浅谈开源类库EventBus的消息机制

标签:android   eventbus   消息机制   

原文地址:http://blog.csdn.net/u012301841/article/details/43937229

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!