EventBus 学习

2015/6/22 posted in  Android

一.概述

EventBus是一款针对Android优化的发布/订阅事件总线。主要功能是替代Intent,Handler,BroadCast在Fragment,Activity,Service,线程之间传递消息.优点是开销小,代码更优雅。以及将发送者和接收者解耦。

实现主要有3个元素组成
1.事件:event
2.发布者:发出消息的一方
3.订阅者:接受并处理消息

二.使用步骤

1.下载EventBus库

地址:https://github.com/greenrobot/EventBus
1.添加gradle
compile 'de.greenrobot:eventbus:2.4.0'
2.下载库,解压,在项目中import modules,再设置dependence

2.自定义事件类

public class TestEvent {
    private String mMesg;

    public TestEvent(String mMesg) {
        this.mMesg = mMesg;
    }

    public String getmMesg() {
        return mMesg;
    }
}

3.订阅者注册以及取消注册

注册:EventBus.getDefault().register(this);
取消:EventBus.getDefault().unregister(this);

4.发布者发送消息

EventBus.getDefault().post(new TestEvent("send mesg"));

5.订阅者消息处理

public void onEventMainThread()

三、实践

在MainActivity中点击button跳转至SecondActivity,在SecondActivity中点击button发送消息给MainActivity,并跳转至MainActivity,MainActivity处理实践,并且显示。

1.MainActivity布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/FirstActivity" />
    <TextView
        android:id="@+id/display_mesg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:background="#00ff00"
        android:visibility="gone"/>
    <Button
        android:id="@+id/start_activity"
        android:text="@string/start_activity"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />


</LinearLayout>

2.SecondActivity布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    tools:context="com.example.xuyushi.eventbustest.SecondActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/SecondActivity" />
    <Button
        android:id="@+id/send_mesg"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/sendMesg"/>

</LinearLayout>

3.自定义Event

package com.example.xuyushi.eventbustest;

/**
 * Created by xuyushi on 15/6/14.
 */
public class TestEvent {
    private String mMesg;

    public TestEvent(String mMesg) {
        this.mMesg = mMesg;
    }

    public String getmMesg() {
        return mMesg;
    }
}

4.MainAcitivity 按键事件

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(getApplicationContext(), SecondActivity.class);
                startActivity(intent);
            }
        });

5.SecondActivity 按键事件

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //send mesg to MainActivity
                EventBus.getDefault().post(new TestEvent("send mesg"));
                Toast.makeText(getApplicationContext(),"mesg have send",Toast.LENGTH_SHORT).show();
                finish();
            }
        });

6.处理事件

    public void onEventMainThread(TestEvent testEvent) {
        String msg = testEvent.getmMesg();
        Log.d("MainActivity", "msg have recevied:" + msg);
        displayMesg.setText("msg have recevied:"+ msg);
        displayMesg.setVisibility(View.VISIBLE);
    }

源码:https://github.com/xuyushi/EventBusTest

EventBus 学习进阶

参考http://blog.csdn.net/harvic880925/article/details/40787203

EventBus有四种事件接受函数分别为

  1. onEvent
  2. onEventMainThread
  3. onEventBackgroundThread
  4. onEventAsync

  • onEvent:如果使用onEvent作为订阅函数,那么该事件在哪个线程发布出来的,onEvent就会在这个线程中运行,也就是说发布事件和接收事件线程在同一个线程。使用这个方法时,在onEvent方法中不能执行耗时操作,如果执行耗时操作容易导致事件分发延迟。
  • onEventMainThread:如果使用onEventMainThread作为订阅函数,那么不论事件是在哪个线程中发布出来的,onEventMainThread都会在UI线程中执行,接收事件就会在UI线程中运行,这个在Android中是非常有用的,因为在Android中只能在UI线程中跟新UI,所以在onEvnetMainThread方法中是不能执行耗时操作的。
  • onEventBackground:如果使用onEventBackgrond作为订阅函数,那么如果事件是在UI线程中发布出来的,那么onEventBackground就会在子线程中运行,如果事件本来就是子线程中发布出来的,那么onEventBackground函数直接在该子线程中执行。
  • onEventAsync:使用这个函数作为订阅函数,那么无论事件在哪个线程发布,都会创建新的子线程在执行onEventAsync.

但SecondEvent发送时,以下三个处理函数都会被调用

 //SecondEvent接收函数一  
    public void onEventMainThread(SecondEvent event) {  
  
        Log.d("harvic", "onEventMainThread收到了消息:" + event.getMsg());  
    }  
    //SecondEvent接收函数二  
    public void onEventBackgroundThread(SecondEvent event){  
        Log.d("harvic", "onEventBackground收到了消息:" + event.getMsg());  
    }  
    //SecondEvent接收函数三  
    public void onEventAsync(SecondEvent event){  
        Log.d("harvic", "onEventAsync收到了消息:" + event.getMsg());  
    }