版权声明:本文为博主原创文章,未经博主允许不得转载。

目录(?)[+]

前言:EventBus是上周项目中用到的,网上的文章大都一样,或者过时,有用的没几篇,经过琢磨,请教他人,也终于弄清楚点眉目,记录下来分享给大家。

相关文章:

1、《EventBus使用详解(一)——初步使用EventBus》

2、《EventBus使用详解(二)——EventBus使用进阶》

一、概述

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

2、基本使用

(1)自定义一个类,可以是空类,比如:

[java] view plain copy 
  1. public class AnyEventType {
  2. public AnyEventType(){}
  3. }

(2)在要接收消息的页面注册:

[java] view plain copy 
  1. eventBus.register(this);

(3)发送消息

[java] view plain copy 
  1. eventBus.post(new AnyEventType event);

(4)接受消息的页面实现(共有四个函数,各功能不同,这是其中之一,可以选择性的实现,这里先实现一个):

[java] view plain copy 
  1. public void onEvent(AnyEventType event) {}

(5)解除注册

[java] view plain copy 
  1. eventBus.unregister(this);

顺序就是这么个顺序,可真正让自己写,估计还是云里雾里的,下面举个例子来说明下。

首先,在EventBus中,获取实例的方法一般是采用EventBus.getInstance()来获取默认的EventBus实例,当然你也可以new一个又一个,个人感觉还是用默认的比较好,以防出错。

二、实战

先给大家看个例子:

当击btn_try按钮的时候,跳到第二个Activity,当点击第二个activity上面的First Event按钮的时候向第一个Activity发送消息,当第一个Activity收到消息后,一方面将消息Toast显示,一方面放入textView中显示。

按照下面的步骤,下面来建这个工程:

1、基本框架搭建

想必大家从一个Activity跳转到第二个Activity的程序应该都会写,这里先稍稍把两个Activity跳转的代码建起来。后面再添加EventBus相关的玩意。

MainActivity布局(activity_main.xml)

[html] view plain copy 
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <Button
  7. android:id="@+id/btn_try"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:text="btn_bty"/>
  11. <TextView
  12. android:id="@+id/tv"
  13. android:layout_width="wrap_content"
  14. android:layout_height="match_parent"/>
  15. </LinearLayout>

新建一个Activity,SecondActivity布局(activity_second.xml)

[html] view plain copy 
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. tools:context="com.harvic.try_eventbus_1.SecondActivity" >
  7. <Button
  8. android:id="@+id/btn_first_event"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:text="First Event"/>
  12. </LinearLayout>

MainActivity.java (点击btn跳转到第二个Activity)

[java] view plain copy 
  1. public class MainActivity extends Activity {
  2. Button btn;
  3. @Override
  4. protected void onCreate(Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. setContentView(R.layout.activity_main);
  7. btn = (Button) findViewById(R.id.btn_try);
  8. btn.setOnClickListener(new View.OnClickListener() {
  9. @Override
  10. public void onClick(View v) {
  11. // TODO Auto-generated method stub
  12. Intent intent = new Intent(getApplicationContext(),
  13. SecondActivity.class);
  14. startActivity(intent);
  15. }
  16. });
  17. }
  18. }

到这,基本框架就搭完了,下面开始按步骤使用EventBus了。

2、新建一个类FirstEvent

[java] view plain copy 
  1. package com.harvic.other;
  2. public class FirstEvent {
  3. private String mMsg;
  4. public FirstEvent(String msg) {
  5. // TODO Auto-generated constructor stub
  6. mMsg = msg;
  7. }
  8. public String getMsg(){
  9. return mMsg;
  10. }
  11. }

这个类很简单,构造时传进去一个字符串,然后可以通过getMsg()获取出来。

3、在要接收消息的页面注册EventBus:

在上面的GIF图片的演示中,大家也可以看到,我们是要在MainActivity中接收发过来的消息的,所以我们在MainActivity中注册消息。

通过我们会在OnCreate()函数中注册EventBus,在OnDestroy()函数中反注册。所以整体的注册与反注册的代码如下:

[java] view plain copy 
  1. package com.example.tryeventbus_simple;
  2. import com.harvic.other.FirstEvent;
  3. import de.greenrobot.event.EventBus;
  4. import android.app.Activity;
  5. import android.content.Intent;
  6. import android.os.Bundle;
  7. import android.util.Log;
  8. import android.view.View;
  9. import android.widget.Button;
  10. import android.widget.TextView;
  11. import android.widget.Toast;
  12. public class MainActivity extends Activity {
  13. Button btn;
  14. TextView tv;
  15. @Override
  16. protected void onCreate(Bundle savedInstanceState) {
  17. super.onCreate(savedInstanceState);
  18. setContentView(R.layout.activity_main);
  19. //注册EventBus
  20. EventBus.getDefault().register(this);
  21. btn = (Button) findViewById(R.id.btn_try);
  22. tv = (TextView)findViewById(R.id.tv);
  23. btn.setOnClickListener(new View.OnClickListener() {
  24. @Override
  25. public void onClick(View v) {
  26. // TODO Auto-generated method stub
  27. Intent intent = new Intent(getApplicationContext(),
  28. SecondActivity.class);
  29. startActivity(intent);
  30. }
  31. });
  32. }
  33. @Override
  34. protected void onDestroy(){
  35. super.onDestroy();
  36. EventBus.getDefault().unregister(this);//反注册EventBus
  37. }
  38. }

4、发送消息

发送消息是使用EventBus中的Post方法来实现发送的,发送过去的是我们新建的类的实例!

[java] view plain copy 
  1. EventBus.getDefault().post(new FirstEvent("FirstEvent btn clicked"));

完整的SecondActivity.java的代码如下:

[java] view plain copy 
  1. package com.example.tryeventbus_simple;
  2. import com.harvic.other.FirstEvent;
  3. import de.greenrobot.event.EventBus;
  4. import android.app.Activity;
  5. import android.os.Bundle;
  6. import android.view.View;
  7. import android.widget.Button;
  8. public class SecondActivity extends Activity {
  9. private Button btn_FirstEvent;
  10. @Override
  11. protected void onCreate(Bundle savedInstanceState) {
  12. super.onCreate(savedInstanceState);
  13. setContentView(R.layout.activity_second);
  14. btn_FirstEvent = (Button) findViewById(R.id.btn_first_event);
  15. btn_FirstEvent.setOnClickListener(new View.OnClickListener() {
  16. @Override
  17. public void onClick(View v) {
  18. // TODO Auto-generated method stub
  19. EventBus.getDefault().post(
  20. new FirstEvent("FirstEvent btn clicked"));
  21. }
  22. });
  23. }
  24. }

5、接收消息

接收消息时,我们使用EventBus中最常用的onEventMainThread()函数来接收消息,具体为什么用这个,我们下篇再讲,这里先给大家一个初步认识,要先能把EventBus用起来先。

在MainActivity中重写onEventMainThread(FirstEvent event),参数就是我们自己定义的类:

在收到Event实例后,我们将其中携带的消息取出,一方面Toast出去,一方面传到TextView中;

[java] view plain copy 
  1. public void onEventMainThread(FirstEvent event) {
  2. String msg = "onEventMainThread收到了消息:" + event.getMsg();
  3. Log.d("harvic", msg);
  4. tv.setText(msg);
  5. Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
  6. }

完整的MainActiviy代码如下:

[java] view plain copy 
  1. package com.example.tryeventbus_simple;
  2. import com.harvic.other.FirstEvent;
  3. import de.greenrobot.event.EventBus;
  4. import android.app.Activity;
  5. import android.content.Intent;
  6. import android.os.Bundle;
  7. import android.util.Log;
  8. import android.view.View;
  9. import android.widget.Button;
  10. import android.widget.TextView;
  11. import android.widget.Toast;
  12. public class MainActivity extends Activity {
  13. Button btn;
  14. TextView tv;
  15. @Override
  16. protected void onCreate(Bundle savedInstanceState) {
  17. super.onCreate(savedInstanceState);
  18. setContentView(R.layout.activity_main);
  19. EventBus.getDefault().register(this);
  20. btn = (Button) findViewById(R.id.btn_try);
  21. tv = (TextView)findViewById(R.id.tv);
  22. btn.setOnClickListener(new View.OnClickListener() {
  23. @Override
  24. public void onClick(View v) {
  25. // TODO Auto-generated method stub
  26. Intent intent = new Intent(getApplicationContext(),
  27. SecondActivity.class);
  28. startActivity(intent);
  29. }
  30. });
  31. }
  32. public void onEventMainThread(FirstEvent event) {
  33. String msg = "onEventMainThread收到了消息:" + event.getMsg();
  34. Log.d("harvic", msg);
  35. tv.setText(msg);
  36. Toast.makeText(this, msg, Toast.LENGTH_LONG).show();
  37. }
  38. @Override
  39. protected void onDestroy(){
  40. super.onDestroy();
  41. EventBus.getDefault().unregister(this);
  42. }
  43. }

好了,到这,基本上算初步把EventBus用起来了,下篇再讲讲EventBus的几个函数,及各个函数间是如何识别当前如何调用哪个函数的。

本文转自 一点点征服   博客园博客,原文链接:http://www.cnblogs.com/ldq2016/p/5386902.html,如需转载请自行联系原作者

EventBus (一) 使用详解——初步使用EventBus相关推荐

  1. EventBus 事件机制详解(Google Guava)

    提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 文章目录 概念 1. 事件本身 2. 发布事件的对象 3. 接收事件的对象 4. 验证结果 概念 使用EventBus(Guava提供 ...

  2. ELF文件详解 ---- 初步认识

    一.  引言 在讲解ELF文件格式之前,我们来回顾一下,一个用C语言编写的高级语言程序是从编写到打包.再到编译执行的基本过程,我们知道在CPU上执行的是低级别的机器语言,从高级语言到低级别的机器语言肯 ...

  3. EventBus:基本使用详解

    一.简介 EventBus项目:https://github.com/greenrobot/EventBus EventBus 3.0.0 API:http://greenrobot.org/file ...

  4. 第 20、21、22节 事件详解

    第20.21.22节 事件详解.Linq 详解 初步了解事件 事件的应用 事件的声明 事件与委托的关系 初步了解事件 事件的功能 = 通知 + 可选的事件参数(即详细信息) 定义:单词 Event,译 ...

  5. EventBus使用详解(二)——EventBus使用进阶

    前言:这段时间感觉自己也有点懒了,真是内心有点自责呢,除了工作,也没做点什么,EventBus也是一周前总结出来的,只能以写博客为名来弥补内心的罪恶感了,集合同事们做的项目,虽然上周开动了,但总感觉大 ...

  6. 【Android开发】greenrobot三大开源利器详解(一)——EventBus

    一.greenrobot介绍 greenrobot相关信息较少,可以确信是一个开源组织.官网:http://greenrobot.org/. greenrobot主要开发并维护了3个Android开源 ...

  7. Android消息传递之EventBus 3.0使用详解

    前言: 前面两篇不仅学习了子线程与UI主线程之间的通信方式,也学习了如何实现组件之间通信,基于前面的知识我们今天来分析一下EventBus是如何管理事件总线的,EventBus到底是不是最佳方案?学习 ...

  8. Android | EventBus使用详解

    前言 EventBus是一种用于Android的发布/订阅事件总线.它有很多优点:简化应用组件间的通信:解耦事件的发送者和接收者:避免复杂和容易出错的依赖和生命周期的问题:很快,专门为高性能优化过等等 ...

  9. EventBus使用详解 1

    前言:EventBus出来已经有一段时间了,github上面也有很多开源项目中使用了EventBus.所以抽空学习顺便整理了一下.目前EventBus最新版本是3.0,所以本文是基于EventBus3 ...

  10. android eventbus使用,Android EventBus使用详解(一)

    前言 EventBus是一种用于Android的发布/订阅事件总线.它有很多优点:简化应用组件间的通信:解耦事件的发送者和接收者:避免复杂和容易出错的依赖和生命周期的问题:很快,专门为高性能优化过等等 ...

最新文章

  1. Linux安装git和maven的详细过程
  2. python数据库特殊字符转义_Python处理mysql特殊字符的问题
  3. android 开发数字键盘,Android 仿「微信」自定义数字键盘
  4. UA MATH567 高维统计II 随机向量6 亚高斯随机向量的应用: 半正定规划
  5. 判断 服务器架构性能 数据,服务器架构之性能扩展-第五章(6)
  6. GDOI2021划水记
  7. 通过wifi上网,桥接模式下virtualBox虚拟机无法连上网的解决办法
  8. c++ 副本构造器
  9. ANSI C和Glib C区别(二)
  10. mysql导入sql文件乱码或者报错unknown command
  11. Linux中文件查找方法大全
  12. JAVASSM框架面试题
  13. MySQL调用存储过程和函数
  14. Maven无法加载ojdbc14.jar的解决方法
  15. 架构之美第九章-架构与设计
  16. 职称计算机考试题库word2003,全国职称计算机考试题库(Word2003模块)
  17. 初中计算机excel考试系统,基于Excel构建计算机考试系统
  18. python 经典图书排行榜_书榜 | 计算机书籍(8.12-8.18)销售排行榜
  19. 万兆铜缆--七类双绞线--光纤等内容
  20. 本地服务启动慢问题及dubbo测试方法记录

热门文章

  1. Android: 一个两点触控的案例
  2. 【LeetCode】【字符串】题号:*151. 翻转字符串里的单词
  3. 计算已知经纬度两点的距离_python
  4. PHP单元测试PHPUnit
  5. Trisk:在 Flink 实现以 task 为中心的流处理动态 Reconfiguration 的 Control Plane
  6. Android Multimedia框架总结(二十二)MediaCodec中C++中创建到start过程及状态变换
  7. python 字符串处理_python 数据清洗之字符串处理
  8. centos php mongodb 驱动,安装 MongoDB PHP 驱动 在CentOS 6.x和遇到的问题
  9. python comprehensions_Python中的Comprehensions和Generations
  10. ubuntu 串口调试工具_开源软件分享基于WPF的串口调试工具