1.概述
EventBus是一款针对Android优化的发布/订阅事件总线。主要功能是替代Intent,Handler,BroadCast在Fragment,Activity,Service,线程之间传递消息.优点是开销小,代码更优雅。以及将发送者和接收者解耦。
2.下载EventBus的类库
下载EventBus的类库源码地址请点击文字:
https://github.com/greenrobot/EventBus
3.EventBus的基本使用方法
(1)首先需要在接收消息这边注册EventBus,注册方式:
EventBus.getDefault().register(this)
(2)解除注册,也是在接收消息类中如:
@Override
protected void onDestroy() {
super.onDestroy();
//取消注册的EventBus
EventBus.getDefault().unregister(this);
}
(3)接收数据时,有四个方法可以接收数据分别如下:
public void onEvent(FirstEvent event)
public void onEventAsync(FirstEvent event)
public void onEventMainThread(FirstEvent event)
public void onEventBackgroundThread(SecondEvent event)
(4)要使用一个类传递数据示例如下:
/**
* @author :huangxianfeng on 2016/11/4.
*/
public class SecondEvent {
private ArrayList mArrayList;
public SecondEvent(ArrayList mArrayList) {
this.mArrayList = mArrayList;
}
public ArrayList getmArrayList() {
return mArrayList;
}
}
(5)那么另外的Activity、Fragment中就可以传递数据,使用的方法是
EventBus.getDefault().post(new SecondEvent(mArrayList));
4.代码实例:
(1)因为上面有详细介绍,MainActivity接收消息的代码如下(接收消息的方法我们以第四个方法为例,有时间的大家可以验证其他方法)
接收消息时,我们使用EventBus中最常用的onEventMainThread()函数来接收消息
/**
* EventBus的简单使用
* <1>首先需要在订阅者这边要注册EventBus,注册方式:EventBus.getDefault().register(this);<1/>
* <2>注册完之后,有以下几个方法可以接收事件发送的内容:onEvent(),onEventAsync(),onEventMainThread(),onEventBackgroundThread()
* 以上四个方法执行的顺序,就是上面的先后顺序<2/>
* <3>在不使用的时候要想着解绑EventBus方法:EventBus.getDefault().unregister(this);<3/>
*/
public class MainActivity extends AppCompatActivity {
private Button btn;
private TextView mTextView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//注册eventBus
EventBus.getDefault().register(this);
btn = (Button) findViewById(R.id.btn_try);
mTextView = (TextView)findViewById(R.id.tv);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
System.out.println("running 1 MianActivity");
Intent intent = new Intent(getApplicationContext(),
SecondActivity.class);
startActivity(intent);
}
});
}
// //第一个接收数据
// public void onEvent(FirstEvent event){
// System.out.println("running 3 event.getMsg() = " + event.getMsg());
// }
//
// //第二个接收数据
// public void onEventAsync(FirstEvent event){
// System.out.println("running 4 event.getMsg() = " + event.getMsg());
// }
//
// //第三个接收到数据
// public void onEventMainThread(FirstEvent event) {
// String msg = "onEventMainThread收到了消息:" + event.getMsg();
// Log.d("harvic", msg);
// mTextView.setText(msg);
// System.out.println("running 5 event.getMsg() = " + event.getMsg());
// Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
// }
//第四个接收到数据
public void onEventBackgroundThread(SecondEvent event){
// System.out.println("running 6 event.getMsg() = " + event.getMsg());
ArrayList<String> mArrayList = event.getmArrayList();
for (int i = 0; i < mArrayList.size(); i++) {
System.out.println("running mArraylist = " + mArrayList.get(i));
}
}
@Override
protected void onDestroy() {
super.onDestroy();
System.out.println("running 2 MianActivity");
//取消注册的EventBus
EventBus.getDefault().unregister(this);
}
}
(2)然后发送消息SecondActivity类的代码如下:
/**
* @author :huangxianfeng on 2016/11/4.
* 发送消息数据的类
*/
public class SecondActivity extends Activity{
private Button mButton;
ArrayList<String> mArrayList;
static String str[] ={"1蓝瘦","2豆瓣酱","3海天豆瓣酱","4野竹笋","5黄菊花","6野菊花","7野黄菊花","8野桃子"};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
mButton = (Button) findViewById(R.id.btn_first_event);
if (mArrayList == null){
mArrayList = new ArrayList<>();
}
for (int i = 0; i < str.length; i++) {
mArrayList.add(str[i]);
}
mButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//EventBus发送数据
EventBus.getDefault().post(new SecondEvent(mArrayList));
}
});
}
}
(3)当然我们还要构建一个传递数据的类,这个类很简单:
/**
* @author :huangxianfeng on 2016/11/4.
*
*/
public class SecondEvent {
private ArrayList mArrayList;
public SecondEvent(ArrayList mArrayList) {
this.mArrayList = mArrayList;
}
public ArrayList getmArrayList() {
return mArrayList;
}
}
构造时传进去一个字符串的集合,然后可以通过getmArrayList()获取出来。
以上就是所有EventBus的基本使用方法,在使用的时候,根据具体的情况,大家再做相应的调整,有什么想交流的,大家可以留言。
查看及获取源代码:
http://download.csdn.net/detail/huang3513/9673254
博客声明
欢迎转载博客,但请保留文章原始出处
作者:定陶黄公子
出处:http://blog.csdn.net/huang3513/article/details/53036427