Android中的Looper类,是用来封装消息循环和消息队列的一个类,用于在android线程中进行消息处理。handler其实可以看做是一个工具类,用来向消息队列中插入消息的。

(1) Looper类用来为一个线程开启一个消息循环。
默认情况下android中新诞生的线程是没有开启消息循环的。(主线程除外,主线程系统会自动为其创建Looper对象,开启消息循环。)
Looper对象通过MessageQueue来存放消息和事件。一个线程只能有一个Looper,对应一个MessageQueue。

(2) 通常是通过Handler对象来与Looper进行交互的。Handler可看做是Looper的一个接口,用来向指定的Looper发送消息及定义处理方法。
默认情况下Handler会与其被定义时所在线程的Looper绑定,比如,Handler在主线程中定义,那么它是与主线程的Looper绑定。
mainHandler = new Handler() 等价于new Handler(Looper.myLooper()).
Looper.myLooper():获取当前进程的looper对象,类似的 Looper.getMainLooper() 用于获取主线程的Looper对象。

(3) 在非主线程中直接new Handler() 会报如下的错误:
E/AndroidRuntime( 6173): Uncaught handler: thread Thread-8 exiting due to uncaught exception
E/AndroidRuntime( 6173): java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
原因是非主线程中默认没有创建Looper对象,需要先调用Looper.prepare()启用Looper。

(4) Looper.loop(); 让Looper开始工作,从消息队列里取消息,处理消息。

注意:写在Looper.loop()之后的代码不会被执行,这个函数内部应该是一个循环,当调用mHandler.getLooper().quit()后,loop才会中止,其后的代码才能得以运行。

(5) 基于以上知识,可实现主线程给子线程(非主线程)发送消息。

把下面例子中的mHandler声明成类成员,在主线程通过mHandler发送消息即可。

Android官方文档中Looper的介绍:
Class used to run a message loop for a thread. Threads by default do not have a message loop associated with them; to create one, call prepare() in the thread that is to run the loop, and then loop() to have it process messages until the loop is stopped.

Most interaction with a message loop is through the Handler class.

This is a typical example of the implementation of a Looper thread, using the separation of prepare() and loop() to create an initial Handler to communicate with the Looper.
01 classLooperThreadextendsThread {
02 publicHandler mHandler;
03
04 publicvoidrun() {
05 Looper.prepare();
06
07 mHandler =newHandler() {
08 publicvoidhandleMessage(Message msg) {
09 // process incoming messages here
10 }
11 };
12
13 Looper.loop();
14 }
15 }

转自:http://vinny-w.iteye.com/blog/1334641

下文转自:http://blog.csdn.net/innost/article/details/6055793

[cpp]view plaincopy
  1. //Looper类分析
  2. //没找到合适的分析代码的办法,只能这么来了。每个重要行的上面都会加上注释
  3. //功能方面的代码会在代码前加上一段分析
  4. publicclassLooper{
  5. //static变量,判断是否打印调试信息。
  6. privatestaticfinalbooleanDEBUG=false;
  7. privatestaticfinalbooleanlocalLOGV=DEBUG?Config.LOGD:Config.LOGV;
  8. //sThreadLocal.get()willreturnnullunlessyou'vecalledprepare().
  9. //线程本地存储功能的封装,TLS,threadlocalstorage,什么意思呢?因为存储要么在栈上,例如函数内定义的内部变量。要么在堆上,例如new或者malloc出来的东西
  10. //但是现在的系统比如Linux和windows都提供了线程本地存储空间,也就是这个存储空间是和线程相关的,一个线程内有一个内部存储空间,这样的话我把线程相关的东西就存储到
  11. //这个线程的TLS中,就不用放在堆上而进行同步操作了。
  12. privatestaticfinalThreadLocalsThreadLocal=newThreadLocal();
  13. //消息队列,MessageQueue,看名字就知道是个queue..
  14. finalMessageQueuemQueue;
  15. volatilebooleanmRun;
  16. //和本looper相关的那个线程,初始化为null
  17. ThreadmThread;
  18. privatePrintermLogging=null;
  19. //static变量,代表一个UIProcess(也可能是service吧,这里默认就是UI)的主线程
  20. privatestaticLoopermMainLooper=null;
  21. /**Initializethecurrentthreadasalooper.
  22. *Thisgivesyouachancetocreatehandlersthatthenreference
  23. *thislooper,beforeactuallystartingtheloop.Besuretocall
  24. *{@link#loop()}aftercallingthismethod,andenditbycalling
  25. *{@link#quit()}.
  26. */
  27. //往TLS中设上这个Looper对象的,如果这个线程已经设过了looper的话就会报错
  28. //这说明,一个线程只能设一个looper
  29. publicstaticfinalvoidprepare(){
  30. if(sThreadLocal.get()!=null){
  31. thrownewRuntimeException("OnlyoneLoopermaybecreatedperthread");
  32. }
  33. sThreadLocal.set(newLooper());
  34. }
  35. /**Initializethecurrentthreadasalooper,markingitasanapplication'smain
  36. *looper.ThemainlooperforyourapplicationiscreatedbytheAndroidenvironment,
  37. *soyoushouldneverneedtocallthisfunctionyourself.
  38. *{@link#prepare()}
  39. */
  40. //由framework设置的UI程序的主消息循环,注意,这个主消息循环是不会主动退出的
  41. //
  42. publicstaticfinalvoidprepareMainLooper(){
  43. prepare();
  44. setMainLooper(myLooper());
  45. //判断主消息循环是否能退出....
  46. //通过quit函数向looper发出退出申请
  47. if(Process.supportsProcesses()){
  48. myLooper().mQueue.mQuitAllowed=false;
  49. }
  50. }
  51. privatesynchronizedstaticvoidsetMainLooper(Looperlooper){
  52. mMainLooper=looper;
  53. }
  54. /**Returnstheapplication'smainlooper,whichlivesinthemainthreadoftheapplication.
  55. */
  56. publicsynchronizedstaticfinalLoopergetMainLooper(){
  57. returnmMainLooper;
  58. }
  59. /**
  60. *Runthemessagequeueinthisthread.Besuretocall
  61. *{@link#quit()}toendtheloop.
  62. */
  63. //消息循环,整个程序就在这里while了。
  64. //这个是static函数喔!
  65. publicstaticfinalvoidloop(){
  66. Looperme=myLooper();//从该线程中取出对应的looper对象
  67. MessageQueuequeue=me.mQueue;//取消息队列对象...
  68. while(true){
  69. Messagemsg=queue.next();//mightblock取消息队列中的一个待处理消息..
  70. //if(!me.mRun){//是否需要退出?mRun是个volatile变量,跨线程同步的,应该是有地方设置它。
  71. //break;
  72. //}
  73. if(msg!=null){
  74. if(msg.target==null){
  75. //Notargetisamagicidentifierforthequitmessage.
  76. return;
  77. }
  78. if(me.mLogging!=null)me.mLogging.println(
  79. ">>>>>Dispatchingto"+msg.target+""
  80. +msg.callback+":"+msg.what
  81. );
  82. msg.target.dispatchMessage(msg);
  83. if(me.mLogging!=null)me.mLogging.println(
  84. "<<<<<Finishedto"+msg.target+""
  85. +msg.callback);
  86. msg.recycle();
  87. }
  88. }
  89. }
  90. /**
  91. *ReturntheLooperobjectassociatedwiththecurrentthread.Returns
  92. *nullifthecallingthreadisnotassociatedwithaLooper.
  93. */
  94. //返回和线程相关的looper
  95. publicstaticfinalLoopermyLooper(){
  96. return(Looper)sThreadLocal.get();
  97. }
  98. /**
  99. *ControlloggingofmessagesastheyareprocessedbythisLooper.If
  100. *enabled,alogmessagewillbewrittento<var>printer</var>
  101. *atthebeginningandendingofeachmessagedispatch,identifyingthe
  102. *targetHandlerandmessagecontents.
  103. *
  104. *@paramprinterAPrinterobjectthatwillreceivelogmessages,or
  105. *nulltodisablemessagelogging.
  106. */
  107. //设置调试输出对象,looper循环的时候会打印相关信息,用来调试用最好了。
  108. publicvoidsetMessageLogging(Printerprinter){
  109. mLogging=printer;
  110. }
  111. /**
  112. *Returnthe{@linkMessageQueue}objectassociatedwiththecurrent
  113. *thread.ThismustbecalledfromathreadrunningaLooper,ora
  114. *NullPointerExceptionwillbethrown.
  115. */
  116. publicstaticfinalMessageQueuemyQueue(){
  117. returnmyLooper().mQueue;
  118. }
  119. //创建一个新的looper对象,
  120. //内部分配一个消息队列,设置mRun为true
  121. privateLooper(){
  122. mQueue=newMessageQueue();
  123. mRun=true;
  124. mThread=Thread.currentThread();
  125. }
  126. publicvoidquit(){
  127. Messagemsg=Message.obtain();
  128. //NOTE:Byenqueueingdirectlyintothemessagequeue,the
  129. //messageisleftwithanulltarget.Thisishowweknowitis
  130. //aquitmessage.
  131. mQueue.enqueueMessage(msg,0);
  132. }
  133. /**
  134. *ReturntheThreadassociatedwiththisLooper.
  135. */
  136. publicThreadgetThread(){
  137. returnmThread;
  138. }
  139. //后面就简单了,打印,异常定义等。
  140. publicvoiddump(Printerpw,Stringprefix){
  141. pw.println(prefix+this);
  142. pw.println(prefix+"mRun="+mRun);
  143. pw.println(prefix+"mThread="+mThread);
  144. pw.println(prefix+"mQueue="+((mQueue!=null)?mQueue:"(null"));
  145. if(mQueue!=null){
  146. synchronized(mQueue){
  147. Messagemsg=mQueue.mMessages;
  148. intn=0;
  149. while(msg!=null){
  150. pw.println(prefix+"Message"+n+":"+msg);
  151. n++;
  152. msg=msg.next;
  153. }
  154. pw.println(prefix+"(Totalmessages:"+n+")");
  155. }
  156. }
  157. }
  158. publicStringtoString(){
  159. return"Looper{"
  160. +Integer.toHexString(System.identityHashCode(this))
  161. +"}";
  162. }
  163. staticclassHandlerExceptionextendsException{
  164. HandlerException(Messagemessage,Throwablecause){
  165. super(createMessage(cause),cause);
  166. }
  167. staticStringcreateMessage(Throwablecause){
  168. StringcauseMsg=cause.getMessage();
  169. if(causeMsg==null){
  170. causeMsg=cause.toString();
  171. }
  172. returncauseMsg;
  173. }
  174. }
  175. }

那怎么往这个消息队列中发送消息呢??调用looper的static函数myQueue可以获得消息队列,这样你就可用自己往里边插入消息了。不过这种方法比较麻烦,这个时候handler类就发挥作用了。先来看看handler的代码,就明白了。

[cpp]view plaincopy
  1. classHandler{
  2. ..........
  3. //handler默认构造函数
  4. publicHandler(){
  5. //这个if是干嘛用的暂时还不明白,涉及到java的深层次的内容了应该
  6. if(FIND_POTENTIAL_LEAKS){
  7. finalClass<?extendsHandler>klass=getClass();
  8. if((klass.isAnonymousClass()||klass.isMemberClass()||klass.isLocalClass())&&
  9. (klass.getModifiers()&Modifier.STATIC)==0){
  10. Log.w(TAG,"ThefollowingHandlerclassshouldbestaticorleaksmightoccur:"+
  11. klass.getCanonicalName());
  12. }
  13. }
  14. //获取本线程的looper对象
  15. //如果本线程还没有设置looper,这回抛异常
  16. mLooper=Looper.myLooper();
  17. if(mLooper==null){
  18. thrownewRuntimeException(
  19. "Can'tcreatehandlerinsidethreadthathasnotcalledLooper.prepare()");
  20. }
  21. //无耻啊,直接把looper的queue和自己的queue搞成一个了
  22. //这样的话,我通过handler的封装机制加消息的话,就相当于直接加到了looper的消息队列中去了
  23. mQueue=mLooper.mQueue;
  24. mCallback=null;
  25. }
  26. //还有好几种构造函数,一个是带callback的,一个是带looper的
  27. //由外部设置looper
  28. publicHandler(Looperlooper){
  29. mLooper=looper;
  30. mQueue=looper.mQueue;
  31. mCallback=null;
  32. }
  33. //带callback的,一个handler可以设置一个callback。如果有callback的话,
  34. //凡是发到通过这个handler发送的消息,都有callback处理,相当于一个总的集中处理
  35. //待会看dispatchMessage的时候再分析
  36. publicHandler(Looperlooper,Callbackcallback){
  37. mLooper=looper;
  38. mQueue=looper.mQueue;
  39. mCallback=callback;
  40. }
  41. //
  42. //通过handler发送消息
  43. //调用了内部的一个sendMessageDelayed
  44. publicfinalbooleansendMessage(Messagemsg)
  45. {
  46. returnsendMessageDelayed(msg,0);
  47. }
  48. //FT,又封装了一层,这回是调用sendMessageAtTime了
  49. //因为延时时间是基于当前调用时间的,所以需要获得绝对时间传递给sendMessageAtTime
  50. publicfinalbooleansendMessageDelayed(Messagemsg,longdelayMillis)
  51. {
  52. if(delayMillis<0){
  53. delayMillis=0;
  54. }
  55. returnsendMessageAtTime(msg,SystemClock.uptimeMillis()+delayMillis);
  56. }
  57. publicbooleansendMessageAtTime(Messagemsg,longuptimeMillis)
  58. {
  59. booleansent=false;
  60. MessageQueuequeue=mQueue;
  61. if(queue!=null){
  62. //把消息的target设置为自己,然后加入到消息队列中
  63. //对于队列这种数据结构来说,操作比较简单了
  64. msg.target=this;
  65. sent=queue.enqueueMessage(msg,uptimeMillis);
  66. }
  67. else{
  68. RuntimeExceptione=newRuntimeException(
  69. this+"sendMessageAtTime()calledwithnomQueue");
  70. Log.w("Looper",e.getMessage(),e);
  71. }
  72. returnsent;
  73. }
  74. //还记得looper中的那个消息循环处理吗
  75. //从消息队列中得到一个消息后,会调用它的target的dispatchMesage函数
  76. //message的target已经设置为handler了,所以
  77. //最后会转到handler的msg处理上来
  78. //这里有个处理流程的问题
  79. publicvoiddispatchMessage(Messagemsg){
  80. //如果msg本身设置了callback,则直接交给这个callback处理了
  81. if(msg.callback!=null){
  82. handleCallback(msg);
  83. }else{
  84. //如果该handler的callback有的话,则交给这个callback处理了---相当于集中处理
  85. if(mCallback!=null){
  86. if(mCallback.handleMessage(msg)){
  87. return;
  88. }
  89. }
  90. //否则交给派生处理,基类默认处理是什么都不干
  91. handleMessage(msg);
  92. }
  93. }
  94. ..........
  95. }

讲了这么多,该怎么创建和使用一个带消息循环的线程呢?

[cpp]view plaincopy
  1. //假设在onCreate中创建一个线程
  2. //不花时间考虑代码的完整和严谨性了,以讲述原理为主。
  3. ....
  4. ...onCreate(...){
  5. //难点是如何把android中的looper和java的thread弄到一起去。
  6. //而且还要把随时取得这个looper用来创建handler
  7. //最简单的办法就是从Thread派生一个
  8. classThreadWithMessageHandleextendsThread{
  9. //重载run函数
  10. LoopermyLooper=null;
  11. run(){
  12. Looper.prepare();//将Looper设置到这个线程中
  13. myLooper=Looper.myLooper();
  14. Looper.loop();开启消息循环
  15. }
  16. ThreadWithMessageHandlethreadWithMgs=newThreadWithMessageHandle();
  17. threadWithMsg.start();
  18. Looperlooper=threadWithMsg.myLooper;//
  19. //这里有个问题.threadWithMgs中的myLooper可能此时为空
  20. //需要同步处理一下
  21. //或者像API文档中的那样,把handler定义到ThreadWithMessageHandle到去。
  22. //外线程获得这个handler的时候仍然要注意同步的问题,因为handler的创建是在run中的
  23. HandlerthreadHandler=newHandler(looper);
  24. threadHandler.sendMessage(...)
  25. }
  26. }
  27. ...

结束。


更多相关文章

  1. android线程间通信之handler
  2. Android中子线程真的不能更新UI吗?
  3. Android探索之路(一)——消息处理机制
  4. android 线程间的通信
  5. Android消息机制的源码理解
  6. Android之线程阻塞(一)
  7. Android多线程AsyncTask详解
  8. Android线程间通信机制

随机推荐

  1. Android(安卓)UI控件详解-RadioGroup和Ra
  2. Android设置系统时间
  3. Android(安卓)debuggerd
  4. Talking about Android(安卓)Process
  5. Android(安卓)View源码解析
  6. android的单选框例子
  7. Android(安卓)Studio 生成UML类图
  8. android 自定义具有反弹效果的ScrollView
  9. Android使用wifi Ap核心类
  10. Android(安卓)webview加载网页