本文出自:http://blog.csdn.net/harvic880925/article/details/40660137html
源碼地址:http://download.csdn.net/detail/harvic880925/8111357java
1、概述
EventBus是一款針對Android優化的發佈/訂閱事件總線。主要功能是替代Intent,Handler,BroadCast在Fragment,Activity,Service,線程之間傳遞消息.優勢是開銷小,代碼更優雅。以及將發送者和接收者解耦。
一、下載EventBus的類庫
源碼:https://github.com/greenrobot/EventBusandroid
二、基本使用git
(1)自定義一個類,能夠是空類,好比:github
- public class AnyEventType {
- public AnyEventType(){}
- }
(2)在要接收消息的頁面註冊:app
(3)發送消息框架
- eventBus.post(new AnyEventType event);
(4)接受消息的頁面實現(共有四個函數,各功能不一樣,這是其中之一,能夠選擇性的實現,這裏先實現一個):ide
- public void onEvent(AnyEventType event) {}
(5)解除註冊
函數
- eventBus.unregister(this);
順序就是這麼個順序,可真正讓本身寫,估計仍是雲裏霧裏的,下面舉個例子來講明下。佈局
首先,在EventBus中,獲取實例的方法通常是採用EventBus.getInstance()來獲取默認的EventBus實例,固然你也能夠new一個又一個,我的感受仍是用默認的比較好,以防出錯。
2、實戰
先給你們看個例子:
當擊btn_try按鈕的時候,跳到第二個Activity,當點擊第二個activity上面的First Event按鈕的時候向第一個Activity發送消息,當第一個Activity收到消息後,一方面將消息Toast顯示,一方面放入textView中顯示。
按照下面的步驟,下面來建這個工程:
一、基本框架搭建
想必你們從一個Activity跳轉到第二個Activity的程序應該都會寫,這裏先稍稍把兩個Activity跳轉的代碼建起來。後面再添加EventBus相關的玩意。
MainActivity佈局(activity_main.xml)
- <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:orientation="vertical">
-
- <Button
- android:id="@+id/btn_try"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="btn_bty"/>
- <TextView
- android:id="@+id/tv"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"/>
-
- </LinearLayout>
新建一個Activity,SecondActivity佈局(activity_second.xml)
- <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:orientation="vertical"
- tools:context="com.harvic.try_eventbus_1.SecondActivity" >
-
- <Button
- android:id="@+id/btn_first_event"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="First Event"/>
-
- </LinearLayout>
MainActivity.java (點擊btn跳轉到第二個Activity)
- public class MainActivity extends Activity {
-
- Button btn;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- btn = (Button) findViewById(R.id.btn_try);
-
- btn.setOnClickListener(new View.OnClickListener() {
-
- @Override
- public void onClick(View v) {
-
- Intent intent = new Intent(getApplicationContext(),
- SecondActivity.class);
- startActivity(intent);
- }
- });
- }
-
- }
到這,基本框架就搭完了,下面開始按步驟使用EventBus了。
二、新建一個類FirstEvent
- package com.harvic.other;
-
- public class FirstEvent {
-
- private String mMsg;
- public FirstEvent(String msg) {
-
- mMsg = msg;
- }
- public String getMsg(){
- return mMsg;
- }
- }
這個類很簡單,構造時傳進去一個字符串,而後能夠經過getMsg()獲取出來。
三、在要接收消息的頁面註冊EventBus:
在上面的GIF圖片的演示中,你們也能夠看到,咱們是要在MainActivity中接收發過來的消息的,因此咱們在MainActivity中註冊消息。
經過咱們會在OnCreate()函數中註冊EventBus,在OnDestroy()函數中反註冊。因此總體的註冊與反註冊的代碼以下:
- package com.example.tryeventbus_simple;
-
- import com.harvic.other.FirstEvent;
-
- import de.greenrobot.event.EventBus;
- import android.app.Activity;
- import android.content.Intent;
- import android.os.Bundle;
- import android.util.Log;
- import android.view.View;
- import android.widget.Button;
- import android.widget.TextView;
- import android.widget.Toast;
-
- public class MainActivity extends Activity {
-
- Button btn;
- TextView tv;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- EventBus.getDefault().register(this);
-
- btn = (Button) findViewById(R.id.btn_try);
- tv = (TextView)findViewById(R.id.tv);
-
- btn.setOnClickListener(new View.OnClickListener() {
-
- @Override
- public void onClick(View v) {
-
- Intent intent = new Intent(getApplicationContext(),
- SecondActivity.class);
- startActivity(intent);
- }
- });
- }
- @Override
- protected void onDestroy(){
- super.onDestroy();
- EventBus.getDefault().unregister(this);
- }
- }
四、發送消息
發送消息是使用EventBus中的Post方法來實現發送的,發送過去的是咱們新建的類的實例!
- EventBus.getDefault().post(new FirstEvent("FirstEvent btn clicked"));
完整的SecondActivity.java的代碼以下:
- package com.example.tryeventbus_simple;
-
- import com.harvic.other.FirstEvent;
-
- import de.greenrobot.event.EventBus;
- import android.app.Activity;
- import android.os.Bundle;
- import android.view.View;
- import android.widget.Button;
-
- public class SecondActivity extends Activity {
- private Button btn_FirstEvent;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_second);
- btn_FirstEvent = (Button) findViewById(R.id.btn_first_event);
-
- btn_FirstEvent.setOnClickListener(new View.OnClickListener() {
-
- @Override
- public void onClick(View v) {
-
- EventBus.getDefault().post(
- new FirstEvent("FirstEvent btn clicked"));
- }
- });
- }
- }
五、接收消息
接收消息時,咱們使用EventBus中最經常使用的onEventMainThread()函數來接收消息,具體爲何用這個,咱們下篇再講,這裏先給你們一個初步認識,要先能把EventBus用起來先。
在MainActivity中重寫onEventMainThread(FirstEvent event),參數就是咱們本身定義的類:
在收到Event實例後,咱們將其中攜帶的消息取出,一方面Toast出去,一方面傳到TextView中;
- public void onEventMainThread(FirstEvent event) {
-
- String msg = "onEventMainThread收到了消息:" + event.getMsg();
- Log.d("harvic", msg);
- tv.setText(msg);
- Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
- }
完整的MainActiviy代碼以下:
- package com.example.tryeventbus_simple;
-
- import com.harvic.other.FirstEvent;
-
- import de.greenrobot.event.EventBus;
- import android.app.Activity;
- import android.content.Intent;
- import android.os.Bundle;
- import android.util.Log;
- import android.view.View;
- import android.widget.Button;
- import android.widget.TextView;
- import android.widget.Toast;
-
- public class MainActivity extends Activity {
-
- Button btn;
- TextView tv;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
-
- EventBus.getDefault().register(this);
-
- btn = (Button) findViewById(R.id.btn_try);
- tv = (TextView)findViewById(R.id.tv);
-
- btn.setOnClickListener(new View.OnClickListener() {
-
- @Override
- public void onClick(View v) {
-
- Intent intent = new Intent(getApplicationContext(),
- SecondActivity.class);
- startActivity(intent);
- }
- });
- }
-
- public void onEventMainThread(FirstEvent event) {
-
- String msg = "onEventMainThread收到了消息:" + event.getMsg();
- Log.d("harvic", msg);
- tv.setText(msg);
- Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
- }
-
- @Override
- protected void onDestroy(){
- super.onDestroy();
- EventBus.getDefault().unregister(this);
- }
- }
好了,到這,基本上算初步把EventBus用起來了,下篇再講講EventBus的幾個函數,及各個函數間是如何識別當前如何調用哪一個函數的。
添加依賴庫
Android Studio 配置gradle:
compile 'org.greenrobot:eventbus:3.0.0'