异步消息处理(Message, Handler, MessageQueue, Looper)
AsyncTask
适用于单线程任务处理,多任务处理还是 Message
/Handler
处理方便一些
主要使用方式:
1,创建子类继承自 Handler
类,覆盖 handleMessage(Message)
方法,switch Message
对象的 what
(int
类型) 域等携带的信息,用于在 UI 线程中进行对应的操作;
2,new
一个 Handler
对象,并保存,之后发送 Message
对象会用到;
3,子线程中进行耗时操作,完成后 new
一个 Message
对象,设置 what, obj(可选)域;
4,使用 Handler
对象的 sendMessage(Message)
方法即可将 Message
发送给 Handler
对象。
这看起来像是回调,不过差异还是挺大的。主要的区别就是 Handler 对象的 sendMessage(Message)
方法只是通知 Handler 对象,之后 handlerMessage(Message) 会自动在 UI 线程中被调用,而直接调用对应方法则不会回到 UI 线程。
package club.seliote.demo;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.TextView;
import java.util.Random;
public class MainActivity extends AppCompatActivity {
private static final String TAG = "MainActivity";
private static final int MESSAGE_UPDATE_0 = 0;
private static final int MESSAGE_UPDATE_1 = 1;
private static final int MESSAGE_UPDATE_2 = 2;
private static final int MESSAGE_UPDATE_3 = 3;
private TextView mTextView;
private Handler mHandler;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.activity_main);
this.mTextView = (TextView) this.findViewById(R.id.text_view);
/**
* Step 2
*/
this.mHandler = new DownloadHandler();
this.download();
}
private void download() {
for (int i = 0; i < 100; i++) {
/**
* Step 3
*/
new Thread(() -> {
try {
// 模拟下载
Thread.sleep((long) (Math.random() * 10000));
}
catch (InterruptedException interruptedException) {
Log.e(TAG, Thread.currentThread().getId() + " had interrupted!");
Message message = new Message();
message.what = 4;
message.obj = this.mTextView;
this.mHandler.sendMessage(message);
return;
}
Message message = new Message();
message.what = new Random().nextInt(4);
message.obj = this.mTextView;
/**
* Step 4
*/
this.mHandler.sendMessage(message);
}).start();
}
}
/**
* Step 1
*/
private class DownloadHandler extends Handler {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
// 判断具体的消息类型,进行相应处理
switch (msg.what) {
case MainActivity.MESSAGE_UPDATE_0:
// Object 类型参数可以用来传递要更新的对象
((TextView)(msg.obj)).setText("000000");
((TextView)(msg.obj)).setTextColor(MainActivity.this.getResources().getColor(R.color.red));
break;
case MainActivity.MESSAGE_UPDATE_1:
((TextView)(msg.obj)).setText("111111");
((TextView)(msg.obj)).setTextColor(MainActivity.this.getResources().getColor(R.color.black));
break;
case MainActivity.MESSAGE_UPDATE_2:
((TextView)(msg.obj)).setText("222222");
((TextView)(msg.obj)).setTextColor(MainActivity.this.getResources().getColor(R.color.blue));
break;
case MainActivity.MESSAGE_UPDATE_3:
((TextView)(msg.obj)).setText("333333");
((TextView)(msg.obj)).setTextColor(MainActivity.this.getResources().getColor(R.color.grey));
break;
default:
((TextView)(msg.obj)).setText("-1-1-1-1-1-1");
((TextView)(msg.obj)).setTextColor(MainActivity.this.getResources().getColor(R.color.colorAccent));
break;
}
}
}
}
异步消息处理(Message, Handler, MessageQueue, Looper)的更多相关文章
- (转)Android消息处理机制(Handler、Looper、MessageQueue与Message)
转自 http://www.cnblogs.com/angeldevil/p/3340644.html Android消息处理机制(Handler.Looper.MessageQueue与Messag ...
- Android开发之异步消息处理机制Handler
更加详细的介绍Handler的博文-http://blog.csdn.net/guolin_blog/article/details/9991569 Android中的异步消息处理主要有四个部分组成, ...
- [转]Handler MessageQueue Looper消息循环原理分析
Handler MessageQueue Looper消息循环原理分析 Handler概述 Handler在Android开发中非常重要,最常见的使用场景就是在子线程需要更新UI,用Handler ...
- Android消息处理机制(Handler、Looper、MessageQueue与Message)
Android是消息驱动的,实现消息驱动有几个要素: 消息的表示:Message 消息队列:MessageQueue 消息循环,用于循环取出消息进行处理:Looper 消息处理,消息循环从消息队列中取 ...
- Android:异步处理之Handler、Looper、MessageQueue之间的恩怨(三)
前言 如果你在阅读本文之前,你不知道Handler在Android中为何物,我建议你先看看本系列的第一篇博文<Android:异步处理之Handler+Thread的应用(一)>:我们都知 ...
- 异步消息处理机制Handler
Android 中的异步消息处理主要由四个部分组成,Message.Handler.MessageQueue 和Looper. 1. Message Message 是在线程之间传递的消息,它可以在内 ...
- Android Handler MessageQueue Looper 消息机制原理
提到Android里的消息机制,便会提到Message.Handler.Looper.MessageQueue这四个类,我先简单介绍以下这4个类 之间的爱恨情仇. Message 消息的封装类,里边存 ...
- 异步消息处理机制——Handler用法
Handler 1. Message Messsge是线程之间传递的消息,它可以在内部携带少量的信息,用于在不同线程之间交换数据,Message的what字段,除此之外还可以使用arg1和arg2字段 ...
- Handler 、 Looper 、Message异步消息处理线程机制( hander消息机制原理)
Handler . Looper .Message 这三者都与Android异步消息处理线程相关的概念. 那么什么叫异步消息处理线程呢? 异步消息处理线程启动后会进入一个无限的循环体之中,每循环一次, ...
随机推荐
- 用python管理Cisco路由器
目前DevOps是整个运维发展的方向,Network的运维也一样.使用程序控制底层的路由器是最基本的要求之一. 本文简单解释如何用Python控制路由器,对网络设备进行配置. Python和网络设备连 ...
- Linux--LAMP平台搭建
LAMP平台搭建 准备工作 rpm -e php php-cli php-ldap php-commn php-mysql --nodeps 删除php相关依赖软件 rpm -ivh zlib-dev ...
- mysqlimport导入简单测试
1 创建一个文本文档:[mysql@xxxycrdb]$ more /tmp/ldcmd1.txt 1,abc,abc@qq.com1,abc,abc@qq.com1,abc,abc@qq.co ...
- 自动驾驶self driving知识点mark
C++, algorithm, RTOS,TX2, CAN, 标准, car model,
- python入门16 递归函数 高阶函数
递归函数:函数内部调用自身.(要注意跳出条件,否则会死循环) 高阶函数:函数的参数包含函数 递归函数 #coding:utf-8 #/usr/bin/python """ ...
- python 整形方法
1. int() a = ' print(type(a), a) b = int(a) print(type(b), b) # 输出 <class 'str'> 123 <class ...
- LeetCodeOJ刷题之12【Integer to Roman】
Integer to Roman Given an integer, convert it to a roman numeral. Input is guaranteed to be within t ...
- 二、 OSI模型的实现TCP 、IP
主要名词定义: IPIP层接收由更低层(网络接口层例如以太网设备驱动程序)发来的数据包,并把该数据包发送到更高层---TCP或UDP层:相反,IP层也把从TCP或UDP层接收来的数据包传送到更低层.I ...
- 论C/C++数据在内存中的二进制存放形式
版权声明:本文为博主原创文章,未经博主同意不得转载. https://blog.csdn.net/u010518429/article/details/30332237 // enter any ty ...
- Type Syntax error, insert ")" to complete Expression
今天倒持了 几个小时! 愣是 没有明确 ,为什么我的JSP的第一行没有代码? 还是报错! 错误是: Description Resource Path Location Type Sy ...