Android中开源库EventBus使用详解

当Android项目越来越庞大的时候,应用的各个部件之间的通信变得越来越复杂,例如:当某一条件发生时,应用中有几个部件对这个消息感兴趣,那么我们通常采用的就是观察者模式,使用观察者模式有一个弊病就是部件之间的耦合度太高,在这里我将会详细介绍Android中的解耦组建EventBus的使用。


EvnetBus的下载地址:https://github.com/greenrobot/EventBus.git


一、使用EventBus的步骤:


1、下载EventBus
2、让自己的项目以来EventBus
3、自定义一个事件(不需要继承任何类),通常我比较喜欢定义一个Message类
4、定义回调函数,相当于观察者模式中的on***Listener函数,在EventBus中可以定义四种类型的回调函数:
a、onEvent它和ThreadModel中的PostThread对应,这个也是默认的类型,当使用这种类型时,回调函数和发起事件的函数会在同一个线程中执行
【Android中开源库EventBus使用详解】 b、onEventMainThread,当使用这种类型时,回调函数会在主线程中执行,这个在Android中非常有用,因为在Android中禁止在子线程中修改UI
c、onEventBackgroundThread,当使用这种类型时,如果事件发起函数在主线程中执行,那么回调函数另启动一个子线程,如果事件发起函数在子线程执行,那么回调函数就在这个子线程执行。
d、onEventBusAsync,当使用这种类型时,不管事件发起函数在哪里执行,都会另起一个线程去执行回调。



[java]view plain copy print ?

  1. public class MainActivity extends Activity {
  2. private ImageView img1;
  3. private ImageView img2;
  4. @Override
  5. protected void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.activity_main);
  8. //img1=(ImageView)this.findViewById(R.id.img1);
  9. //img2=(ImageView)this.findViewById(R.id.img2);
  10. Log.v("EventBus1", Thread.currentThread().getId()+"+++");
  11. //注册
  12. EventBus.getDefault().register(this);
  13. EventBus.getDefault().register(new MyClass());
  14. }
  15. @Override
  16. public boolean onCreateOptionsMenu(Menu menu) {
  17. // Inflate the menu; this adds items to the action bar if it is present.
  18. getMenuInflater().inflate(R.menu.main, menu);
  19. return true;
  20. }
  21. //分发
  22. public void postEvent(View view)
  23. {
  24. EventBus.getDefault().post(new ChangeImgEvent(1));
  25. }
  26. @Override
  27. protected void onStop() {
  28. // TODO Auto-generated method stub
  29. super.onStop();
  30. EventBus.getDefault().unregister(this);
  31. }
  32. public void onEventAsync(ChangeImgEvent event)
  33. {
  34. Log.v("EventBus1", Thread.currentThread().getId()+"----");
  35. if(event.getType()==1)
  36. {
  37. System.out.println("-------------+++++++++++");
  38. try {
  39. Thread.sleep(10000);
  40. } catch (InterruptedException e) {
  41. // TODO Auto-generated catch block
  42. e.printStackTrace();
  43. }
  44. }
  45. }
  46. }

具体使用如上,代码比较简单,就不做介绍了,我已经上传详细代码
下载地址:http://download.csdn.net/detail/yuanzeyao2008/6675583

    推荐阅读