一、概述
前一篇給大家裝簡單演示了EventBus的onEventMainThread()函數的接收,其實EventBus還有另外有個不同的函數,他們分別是:
1、onEvent 2、onEventMainThread 3、onEventBackgroundThread 4、onEventAsync
這四種訂閱函數都是使用onEvent開頭的,它們的功能稍有不同,在介紹不同之前先介紹兩個概念:
告知觀察者事件發生時通過EventBus.post函數實現,這個過程叫做事件的發布,觀察者被告知事件發生叫做事件的接收,是通過下面的訂閱函數實現的。
onEvent: 如果使用onEvent作為訂閱函數,那么該事件在哪個線程發布出來的,onEvent就會在這個線程中運行,也就是說發布事件和接收事件線程在同一個線程。使用這個方法時,在onEvent方法中不能執行耗時操作,如果執行耗時操作容易導致事件分發延遲。
onEventMainThread: 如果使用onEventMainThread作為訂閱函數,那么不論事件是在哪個線程中發布出來的,onEventMainThread都會在UI線程中執行,接收事件就會在UI線程中運行,這個在Android中是非常有用的,因為在Android中只能在UI線程中跟新UI,所以在onEvnetMainThread方法中是不能執行耗時操作的。
onEventBackground: 如果使用onEventBackgrond作為訂閱函數,那么如果事件是在UI線程中發布出來的,那么onEventBackground就會在子線程中運行,如果事件本來就是子線程中發布出來的,那么onEventBackground函數直接在該子線程中執行。
onEventAsync: 使用這個函數作為訂閱函數,那么無論事件在哪個線程發布,都會創建新的子線程在執行onEventAsync.
二、實戰
1、解析
上面列出的這四個函數,關鍵問題在于,我們怎么指定調用哪個函數呢?
我們先研究一下,上一篇中是怎么調用的onEventMainThread函數,除了在接收端注冊與反注冊以后,關鍵問題在于新建的一個類:
新建一個類:
package com.harvic.other; public class FirstEvent { PRivate String mMsg; public FirstEvent(String msg) { // TODO Auto-generated constructor stub mMsg = msg; } public String getMsg(){ return mMsg; } }發送時:
EventBus.getDefault().post(new FirstEvent("FirstEvent btn clicked"));接收時:
發現什么問題了沒? 沒錯,發送時發送的是這個類的實例,接收時參數就是這個類實例。
所以?。。。。?!當發過來一個消息的時候,EventBus怎么知道要調哪個函數呢,就看哪個函數傳進去的參數是這個類的實例,哪個是就調哪個。那如果有兩個是呢,那兩個都會被調用?。。。?/p>
為了證明這個問題,下面寫個例子,先看下效果
2、實例
先看看我們要實現的效果:
這次我們在上一篇的基礎上,新建三個類:FirstEvent、SecondEvent、ThirdEvent,在第二個Activity中發送請求,在MainActivity中接收這三個類的實例,接收時的代碼為:
public void onEventMainThread(FirstEvent event) { Log.d("harvic", "onEventMainThread收到了消息:" + event.getMsg()); } public void onEventMainThread(SecondEvent event) { Log.d("harvic", "onEventMainThread收到了消息:" + event.getMsg()); } public void onEvent(ThirdEvent event) { Log.d("harvic", "OnEvent收到了消息:" + event.getMsg()); }使用兩個onEventMainThread分別接收FirstEvent實例的消息和SecondEvent實例的消息,使用onEvent接收ThirdEvent實例的消息。界面操作及結果如下:
Log輸出結果:
可以看到,在發送FirstEvent時,在MainActiviy中雖然有三個函數,但只有第一個onEventMainThread函數的接收參數是FirstEvent,所以會傳到它這來接收。所以這里識別調用EventBus中四個函數中哪個函數,是通過參數中的實例來決定的。
因為我們是在上一篇例子的基礎上完成的,所以這里的代碼就不詳細寫了,只寫改動的部分。
1、三個類
package com.harvic.other; public class FirstEvent { private String mMsg; public FirstEvent(String msg) { // TODO Auto-generated constructor stub mMsg = msg; } public String getMsg(){ return mMsg; } } package com.harvic.other; public class SecondEvent{ private String mMsg; public SecondEvent(String msg) { // TODO Auto-generated constructor stub mMsg = "MainEvent:"+msg; } public String getMsg(){ return mMsg; } } package com.harvic.other; public class ThirdEvent { private String mMsg; public ThirdEvent(String msg) { // TODO Auto-generated constructor stub mMsg = msg; } public String getMsg(){ return mMsg; } }2、發送
然后在SecondActivity中新建三個按鈕,分別發送不同的類的實例,代碼如下:
[java] view plain copy 在CODE上查看代碼片派生到我的代碼片package com.harvic.tryeventbus2; import com.harvic.other.FirstEvent; import com.harvic.other.SecondEvent; import com.harvic.other.ThirdEvent; 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, btn_SecondEvent, btn_ThirdEvent; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_second); btn_FirstEvent = (Button) findViewById(R.id.btn_first_event); btn_SecondEvent = (Button) findViewById(R.id.btn_second_event); btn_ThirdEvent = (Button) findViewById(R.id.btn_third_event); btn_FirstEvent.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub EventBus.getDefault().post( new FirstEvent("FirstEvent btn clicked")); } }); btn_SecondEvent.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub EventBus.getDefault().post( new SecondEvent("SecondEvent btn clicked")); } }); btn_ThirdEvent.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub EventBus.getDefault().post( new ThirdEvent("ThirdEvent btn clicked")); } }); } }3、接收
在MainActivity中,除了注冊與注冊,我們利用onEventMainThread(FirstEvent event)來接收來自FirstEvent的消息,使用onEventMainThread(SecondEvent event)接收來自SecondEvent 實例的消息,使用onEvent(ThirdEvent event) 來接收ThirdEvent 實例的消息。
[java] view plain copy 在CODE上查看代碼片派生到我的代碼片package com.harvic.tryeventbus2; import com.harvic.other.FirstEvent; import com.harvic.other.SecondEvent; import com.harvic.other.ThirdEvent; import de.greenrobot.event.EventBus; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.Button; import android.widget.TextView; public class MainActivity extends Activity { Button btn; TextView tv; EventBus eventBus; @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); btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent intent = new Intent(getapplicationContext(), SecondActivity.class); startActivity(intent); } }); } public void onEventMainThread(FirstEvent event) { Log.d("harvic", "onEventMainThread收到了消息:" + event.getMsg()); } public void onEventMainThread(SecondEvent event) { Log.d("harvic", "onEventMainThread收到了消息:" + event.getMsg()); } public void onEvent(ThirdEvent event) { Log.d("harvic", "OnEvent收到了消息:" + event.getMsg()); } @Override protected void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); EventBus.getDefault().unregister(this); } }到這里,代碼就結束 了,從上面的代碼,我們可以看到,EventBus是怎么接收消息的,是根據參數中類的實例的類型的判定的,所以當如果我們在接收時,同一個類的實例參數有兩個函數來接收會怎樣?答案是,這兩個函數都會執行,下面實驗一下: 在MainActivity中接收時,我們在接收SecondEvent時,在上面onEventMainThread基礎上另加一個onEventBackgroundThread和onEventAsync,即下面的代碼:
[java] view plain copy 在CODE上查看代碼片派生到我的代碼片//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()); }完整的代碼在這里:
package com.harvic.tryeventbus2; import com.harvic.other.FirstEvent; import com.harvic.other.SecondEvent; import com.harvic.other.ThirdEvent; import de.greenrobot.event.EventBus; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.Button; import android.widget.TextView; public class MainActivity extends Activity { Button btn; TextView tv; EventBus eventBus; @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); btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub Intent intent = new Intent(getApplicationContext(), SecondActivity.class); startActivity(intent); } }); } public void onEventMainThread(FirstEvent event) { Log.d("harvic", "onEventMainThread收到了消息:" + event.getMsg()); } //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()); } public void onEvent(ThirdEvent event) { Log.d("harvic", "OnEvent收到了消息:" + event.getMsg()); } @Override protected void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); EventBus.getDefault().unregister(this); } }經過上面的分析,當發送SecondEvent實例的消息過來的時候,這三個函數會同時接收到并各自執行,所以當點擊Second Event這個button的時候,會出現下面的結果:
好啦,這篇就到了,講來講去就是說一個問題:消息的接收是根據參數中的類名來決定執行哪一個的;
參考文章:
《Android解耦庫EventBus的使用和源碼分析》:http://blog.csdn.net/yuanzeyao/article/details/38174537
《EventBus的使用初試》:http://blog.csdn.net/pp_hdsny/article/details/14523561
《EventBusExplained 》:https://code.google.com/p/guava-libraries/wiki/EventBusExplained
《Google Guava EventBus實例與分析》
源碼下載地址:http://download.csdn.net/detail/harvic880925/8128633
轉載自:http://blog.csdn.net/harvic880925/article/details/40787203
新聞熱點
疑難解答