Android handle-message的发送与处理案例详解
程序员文章站
2022-06-25 10:10:42
1、handle,messagequeue,message类图handle: 处理消息,并提供一系列函数帮忙我们创建消息和插入消息到消息队列中创建handle实例--pbapclientconnect...
1、handle,messagequeue,message类图
handle: 处理消息,并提供一系列函数帮忙我们创建消息和插入消息到消息队列中
创建handle实例--pbapclientconnectionhandler
mhandlerthread = new handlerthread("pbap pce handler", process.thread_priority_background); mhandlerthread.start(); //将这个线程设置为消息处理looper线程 mconnectionhandler = new pbapclientconnectionhandler.builder().setlooper(mhandlerthread.getlooper()).setcontext(mservice).setclientsm(pbapclientstatemachine.this).setremotedevice(mcurrentdevice).build();
looper作用:looper的prepare函数将looper和调用prepare的线程绑定在一起,调用线程调用loop函数处理来自该消息队列的消息。
android 系统的消息队列和消息循环都是针对具体线程的,一个线程可以存在(当然也可以不存在)一个消息队列和一个消息循环(looper),特定线程的消息只能分发给本线程,不能进行跨线程通讯。但是创建的工作线程默认是没有消息循环和消息队列的,如果想让该线程具有消息队列和消息循环,需要在线程中首先调用looper.prepare()来创建消息队列,然后调用looper.loop()进入消息循环
messagequeue:消息队列,handle和looper中使用的是同一个消息队列
2、发送消息
3、处理消息
looper处理消息:
loop 使消息循环起作用,取消息,处理消息
/** * run the message queue in this thread. be sure to call * {@link #quit()} to end the loop. */ public static void loop() { final looper me = mylooper();//返回保存在调用线程tlv中的looper对象 if (me == null) { throw new runtimeexception("no looper; looper.prepare() wasn't called on this thread."); } final messagequeue queue = me.mqueue;//取得looper对象的消息队列 // make sure the identity of this thread is that of the local process, // and keep track of what that identity token actually is. binder.clearcallingidentity(); final long ident = binder.clearcallingidentity(); for (;;) { message msg = queue.next(); // might block 取消息队列中的一个待处理消息 if (msg == null) { // no message indicates that the message queue is quitting. return; } // this must be in a local variable, in case a ui event sets the logger printer logging = me.mlogging; if (logging != null) { logging.println(">>>>> dispatching to " + msg.target + " " + msg.callback + ": " + msg.what); } msg.target.dispatchmessage(msg);//调用该消息的handle,交给它的dispatchmessage函数处理 } }
handle -dispatchmessage
/** * handle system messages here. */ public void dispatchmessage(message msg) { if (msg.callback != null) { //message的callback不为空,则直接调用message的callback来处理消息 handlecallback(msg); } else { if (mcallback != null) { //handle的全局callback不为空 if (mcallback.handlemessage(msg)) { return; } } //调用handle子类的handlemessage来处理消息 handlemessage(msg); } }
message.callback用法:将runnable当做一个message
runnable线程处理使用实例
mhandler.post(new runnable() { @override public void run() { final ibinder b = callbacks.asbinder(); }); }
到此这篇关于android handle-message的发送与处理案例详解的文章就介绍到这了,更多相关android handle-message内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!