EventBus通信
需求:
1.ActivityA打开ActivityB
2.在B中执行某操作后,同时执行A中的方法
lib下载:eventbus-2.4.0.jar jmmy
1.在EventBusTestActivity注册eventBus
EventBus.getDefault().register(this);// 注册广播
2.点击事件跳转
Intent intent = new Intent(getApplicationContext(),EventBusTest2Activity.class);
startActivity(intent);
3.在EventBusTest2Activity中发送广播
EventBus.getDefault().post(new MyEvent("Message From EventBusTest2"));
4.EventBusTestActivity接收广播
// onEvent会放在发送事件的那个线程中去执行,不能进行UI更新
public void onEvent(MyEvent event) {
Log.i("What", "[onEvent]My Thread is "
+ Thread.currentThread().getName());
} // onEventMainThread就是会放到主线程去执行的事件处理,一般在其中进行比如UI的更新的操作
public void onEventMainThread(MyEvent event) {
Log.i("What", "[onEventMainThread] Thread is "
+ Thread.currentThread().getName());
test1.setText("测试完成");
}
5.解除广播
protected void onDestroy() {
super.onDestroy();
EventBus.getDefault().unregister(this);// 解除
}
下面贴上源码:
package com.example.activity; import com.example.event.MyEvent; 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.view.View.OnClickListener;
import android.widget.Button; public class EventBusTestActivity extends Activity implements OnClickListener {
private Button test1; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_event_bus_test);
test1 = (Button) findViewById(R.id.test1);
test1.setOnClickListener(this);
EventBus.getDefault().register(this);// 注册广播
} // onEvent会放在发送事件的那个线程中去执行,不能进行UI更新
public void onEvent(MyEvent event) {
Log.i("What", "[onEvent]My Thread is "
+ Thread.currentThread().getName());
} // onEventMainThread就是会放到主线程去执行的事件处理,一般在其中进行比如UI的更新的操作
public void onEventMainThread(MyEvent event) {
Log.i("What", "[onEventMainThread] Thread is "
+ Thread.currentThread().getName());
test1.setText("测试完成");
} @Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.test1:
Intent intent = new Intent(getApplicationContext(),
EventBusTest2Activity.class);
startActivity(intent);
break;
}
} @Override
protected void onDestroy() {
super.onDestroy();
EventBus.getDefault().unregister(this);// 解除
}
}
package com.example.activity; import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button; import com.example.event.MyEvent; import de.greenrobot.event.EventBus; public class EventBusTest2Activity extends Activity {
private Button click1; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_event_bus_test2); click1 = (Button) findViewById(R.id.click1);
click1.setOnClickListener(new OnClickListener() { @Override
public void onClick(View v) {
EventBus.getDefault().post(
new MyEvent("Message From EventBusTest2"));
}
});
}
}
EventBus通信的更多相关文章
- EventBus通信小能手
1.EventBus简介 EventBus 是由 greenrobot 组织开发的一个 Android 事件发布/订阅轻量级框架,特点:代码简洁,是一种发布订阅设计模式(观察者设计模式). Even ...
- vertx的Actor模型实现
前言 note: Context 与 EventLoop 关系 : N ; 每次创建一个vericles或者multi instances 通过EventLoopGroup.next挑出一个Event ...
- 整理4种Vue组件通信方式
整理4种Vue组件通信方式 重点是梳理了前两个,父子组件通信和eventBus通信,我觉得Vue文档里的说明还是有一些简易,我自己第一遍是没看明白. 父子组件的通信 非父子组件的eventBus通信 ...
- Android之EventBus1.0 和EventBus3.0的使用详解
当Android项目越来越庞大的时候,应用的各个部件之间的通信变得越来越复杂,那么我们通常采用的就是Android中的解耦组件EventBus.EventBus是一款针对Android优化的发布/订阅 ...
- vue开发知识点总结
一.vue介绍 Vue.js 是一套构建用户界面(UI)的渐进式JavaScript框架,是一个轻量级MVVM(model-view-viewModel)框架. 二.数据绑定 最常用的方式:Musta ...
- 快速Android开发系列通信篇之EventBus
先吐槽一下博客园的MarkDown编辑器,推出的时候还很高兴博客园支持MarkDown了,试用了下发现支持不完善就没用了,这次这篇是在其他编辑器下写的,复制过来后发现..太烂了.怎么着作为一个技术博客 ...
- UWP开源项目 LLQNotifier 页面间通信利器(移植EventBus)
前言 EventBus是一个Android版本的页面间通信库,这个库让页面间的通信变得十分容易且大幅降低了页面之间的耦合.小弟之前玩Android的时候就用得十分顺手,现在玩uwp就觉得应该在这平台也 ...
- EventBus完全解析--组件/线程间通信利器
github地址:https://github.com/greenrobot/EventBus 1, Android EventBus实战, 没听过你就out了 2, Android EventBu ...
- Android 通信 EventBus
参考: Android 框架炼成 教你如何写组件间通信框架EventBus Android EventBus源码解析 带你深入理解EventBus Android EventBus实战 没听过你就ou ...
随机推荐
- SQLServer2000数据同步复制技术方法
一. 预备工作 1.发布服务器,订阅服务器都创建一个同名的windows用户,并设置相同的密码,做为发布快照文件夹的有效访问用户 --管理工具 --计算机管理 --用户和组 --右键用户 --新建用户 ...
- 使用xib方式创建UITableViewCell,设置Label自动换行注意事项
自定义的UITableViewCell,使用xib方式创建,想要其中的UILabel换行显示:计算Label的高度,让其自动换行,总是没有效果. 我猜测原因可能在于使用了autolayout布局.只要 ...
- 如何查看SQLServer数据库每个表占用的空间大小?
如何查看SQLServer数据库每个表占用的空间大小? 创建存储过程: CREATE PROCEDURE [dbo].[sys_viewTableSpace]AS BEGIN SET NOCOUNT ...
- css3:border-radius圆角边框详解 (变圆 图片)
转:http://www.kuqin.com/shuoit/20141014/342620.html border-radius:50% 今天来聊聊这个border-radius属性,radius的英 ...
- Android之日期及时间选择对话框
转:http://www.cnblogs.com/linjiqin/archive/2011/03/10/1980215.html main.xml布局文件 <?xml version=&quo ...
- 学php之翻译wordpress(2)
wp-load.php <?php /** * Bootstrap file for setting the ABSPATH constant * and loading the wp-conf ...
- virtual box Failed to load unit ""pgm" 的error
原因:没有正常的待机或者关机退出. 解决办法:右键清除保存状况.
- java中内存结构及堆栈详解
一. java内存结构 1. Heap(堆):实例分配的地方,通过-Xms与-Xmx来设置 2. MethodArea(方法区域):类的信息及静态变量. 对应是Permanet Generation, ...
- logstash 使用grok正则解析日志
http://xiaorui.cc/2015/01/27/logstash%E4%BD%BF%E7%94%A8grok%E6%AD%A3%E5%88%99%E8%A7%A3%E6%9E%90%E6%9 ...
- python爬爬爬之单网页html页面爬取
python爬爬爬之单网页html页面爬取 作者:vpoet mail:vpoet_sir@163.com 注:随意copy 不用告诉我 #coding:utf-8 import urllib2 Re ...