Android消息处理机制Looper和Handler详解

Message:消息,其中包含了消息ID,消息处理对象以及处理的数据等,由MessageQueue统一列队,终由Handler处理。
Handler:处理者,负责Message的发送及处理。使用Handler时,需要实现handleMessage(Message msg)方法来对特定的Message进行处理,例如更新UI等。
MessageQueue:消息队列,用来存放Handler发送过来的消息,并按照FIFO规则执行。当然,存放Message并非实际意义的保存,而是将Message以链表的方式串联起来的,等待Looper的抽取。
Looper:消息泵,不断地从MessageQueue中抽取Message执行。因此,一个MessageQueue需要一个Looper。
Thread:线程,负责调度整个消息循环,即消息循环的执行场所。

Android系统的消息队列和消息循环都是针对具体线程的,一个线程可以存在(当然也可以不存在)一个消息队列和一个消 息循环(Looper),特定线程的消息只能分发给本线程,不能进行跨线程,跨进程通讯。但是创建的工作线程默认是没有消息循环和消息队列的,如果想让该 线程具有消息队列和消息循环,需要在线程中首先调用Looper.prepare()来创建消息队列,然后调用Looper.loop()进入消息循环。 如下例所示:

 LooperThread Thread {
    Handler mHandler;

    run() {
     Looper.prepare();

     mHandler = Handler() {
        handleMessage(Message msg) {

       }
     };

     Looper.loop();
   }
 }

//Looper类分析
 //没找到合适的分析代码的办法,只能这么来了。每个重要行的上面都会加上注释
 //功能方面的代码会在代码前加上一段分析

 public class Looper {
  //static变量,判断是否打印调试信息。
   private static final boolean DEBUG = false;
   private static final boolean localLOGV = DEBUG ? Config.LOGD : Config.LOGV;

   // sThreadLocal.get() will return null unless you've called prepare().
 //线程本地存储功能的封装,TLS,thread local storage,什么意思呢?因为存储要么在栈上,例如函数内定义的内部变量。要么在堆上,例如new或者malloc出来的东西
 //但是现在的系统比如Linux和windows都提供了线程本地存储空间,也就是这个存储空间是和线程相关的,一个线程内有一个内部存储空间,这样的话我把线程相关的东西就存储到
 //这个线程的TLS中,就不用放在堆上而进行同步操作了。
   private static final ThreadLocal sThreadLocal = new ThreadLocal();
 //消息队列,MessageQueue,看名字就知道是个queue..
   final MessageQueue mQueue;
   volatile boolean mRun;
 //和本looper相关的那个线程,初始化为null
   Thread mThread;
   private Printer mLogging = null;
 //static变量,代表一个UI Process(也可能是service吧,这里默认就是UI)的主线程
   private static Looper mMainLooper = null;

   /** Initialize the current thread as a looper.
    * This gives you a chance to create handlers that then reference
    * this looper, before actually starting the loop. Be sure to call
    * {@link #loop()} after calling this method, and end it by calling
    * {@link #quit()}.
    */
 //往TLS中设上这个Looper对象的,如果这个线程已经设过了looper的话就会报错
 //这说明,一个线程只能设一个looper
   public static final void prepare() {
     if (sThreadLocal.get() != null) {
       throw new RuntimeException("Only one Looper may be created per thread");
     }
     sThreadLocal.set(new Looper());
   }

   /** Initialize the current thread as a looper, marking it as an application's main
   * looper. The main looper for your application is created by the Android environment,
   * so you should never need to call this function yourself.
   * {@link #prepare()}
   */
 //由framework设置的UI程序的主消息循环,注意,这个主消息循环是不会主动退出的
 //
   public static final void prepareMainLooper() {
     prepare();
     setMainLooper(myLooper());
 //判断主消息循环是否能退出....
 //通过quit函数向looper发出退出申请
     if (Process.supportsProcesses()) {
       myLooper().mQueue.mQuitAllowed = false;
     }
   }

   private synchronized static void setMainLooper(Looper looper) {
     mMainLooper = looper;
   }

   /** Returns the application's main looper, which lives in the main thread of the application.
   */
   public synchronized static final Looper getMainLooper() {
     return mMainLooper;
   }

   /**
   * Run the message queue in this thread. Be sure to call
   * {@link #quit()} to end the loop.
   */
 //消息循环,整个程序就在这里while了。
 //这个是static函数喔!
   public static final void loop() {
     Looper me = myLooper();//从该线程中取出对应的looper对象
     MessageQueue queue = me.mQueue;//取消息队列对象...
     while (true) {
       Message msg = queue.next(); // might block取消息队列中的一个待处理消息..
       //if (!me.mRun) {//是否需要退出?mRun是个volatile变量,跨线程同步的,应该是有地方设置它。
       //  break;
       //}
       if (msg != null) {
         if (msg.target == null) {
           // No target is a magic identifier for the quit message.
           return;
         }
         if (me.mLogging!= null) me.mLogging.println(
             ">>>>> Dispatching to " + msg.target + " "
             + msg.callback + ": " + msg.what
             );
         msg.target.dispatchMessage(msg);
         if (me.mLogging!= null) me.mLogging.println(
             "<<<<< Finished to  " + msg.target + " "
             + msg.callback);
         msg.recycle();
       }
     }
   }

   /**
   * Return the Looper object associated with the current thread. Returns
   * null if the calling thread is not associated with a Looper.
  */
//返回和线程相关的looper
 public static final Looper myLooper() {
   return (Looper)sThreadLocal.get();
 }

 /**
  * Control logging of messages as they are processed by this Looper. If
  * enabled, a log message will be written to <var>printer</var>
  * at the beginning and ending of each message dispatch, identifying the
  * target Handler and message contents.
  *
  * @param printer A Printer object that will receive log messages, or
  * null to disable message logging.
  */
//设置调试输出对象,looper循环的时候会打印相关信息,用来调试用最好了。
 public void setMessageLogging(Printer printer) {
   mLogging = printer;
 }

 /**
  * Return the {@link MessageQueue} object associated with the current
  * thread. This must be called from a thread running a Looper, or a
  * NullPointerException will be thrown.
  */
 public static final MessageQueue myQueue() {
   return myLooper().mQueue;
 }
//创建一个新的looper对象,
//内部分配一个消息队列,设置mRun为true
 private Looper() {
   mQueue = new MessageQueue();
   mRun = true;
   mThread = Thread.currentThread();
 }

 public void quit() {
   Message msg = Message.obtain();
   // NOTE: By enqueueing directly into the message queue, the
   // message is left with a null target. This is how we know it is
   // a quit message.
   mQueue.enqueueMessage(msg, 0);
 }

 /**
  * Return the Thread associated with this Looper.
  */
 public Thread getThread() {
   return mThread;
 }
 //后面就简单了,打印,异常定义等。
 public void dump(Printer pw, String prefix) {
   pw.println(prefix + this);
   pw.println(prefix + "mRun=" + mRun);
   pw.println(prefix + "mThread=" + mThread);
   pw.println(prefix + "mQueue=" + ((mQueue != null) ? mQueue : "(null"));
   if (mQueue != null) {
     synchronized (mQueue) {
       Message msg = mQueue.mMessages;
       int n = 0;
       while (msg != null) {
         pw.println(prefix + " Message " + n + ": " + msg);
         n++;
         msg = msg.next;
       }
       pw.println(prefix + "(Total messages: " + n + ")");
     }
   }
 }

 public String toString() {
   return "Looper{"
     + Integer.toHexString(System.identityHashCode(this))
     + "}";
 }

 static class HandlerException extends Exception {

   HandlerException(Message message, Throwable cause) {
     super(createMessage(cause), cause);
   }

   static String createMessage(Throwable cause) {
     String causeMsg = cause.getMessage();
     if (causeMsg == null) {
       causeMsg = cause.toString();
     }
     return causeMsg;
   }
 }
}

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

 class Handler{
 ..........
 //handler默认构造函数
 public Handler() {
 //这个if是干嘛用的暂时还不明白,涉及到java的深层次的内容了应该
     if (FIND_POTENTIAL_LEAKS) {
       final Class<? extends Handler> klass = getClass();
       if ((klass.isAnonymousClass() || klass.isMemberClass() || klass.isLocalClass()) &&
           (klass.getModifiers() & Modifier.STATIC) == 0) {
         Log.w(TAG, "The following Handler class should be static or leaks might occur: " +
           klass.getCanonicalName());
       }
     }
 //获取本线程的looper对象
 //如果本线程还没有设置looper,这回抛异常
     mLooper = Looper.myLooper();
     if (mLooper == null) {
       throw new RuntimeException(
         "Can't create handler inside thread that has not called Looper.prepare()");
     }
 //无耻啊,直接把looper的queue和自己的queue搞成一个了
 //这样的话,我通过handler的封装机制加消息的话,就相当于直接加到了looper的消息队列中去了
     mQueue = mLooper.mQueue;
     mCallback = null;
   }
 //还有好几种构造函数,一个是带callback的,一个是带looper的
 //由外部设置looper
   public Handler(Looper looper) {
     mLooper = looper;
     mQueue = looper.mQueue;
     mCallback = null;
   }
 // 带callback的,一个handler可以设置一个callback。如果有callback的话,
 //凡是发到通过这个handler发送的消息,都有callback处理,相当于一个总的集中处理
 //待会看dispatchMessage的时候再分析
 public Handler(Looper looper, Callback callback) {
     mLooper = looper;
     mQueue = looper.mQueue;
     mCallback = callback;
   }
 //
 //通过handler发送消息
 //调用了内部的一个sendMessageDelayed
 public final boolean sendMessage(Message msg)
   {
     return sendMessageDelayed(msg, 0);
   }
 //FT,又封装了一层,这回是调用sendMessageAtTime了
 //因为延时时间是基于当前调用时间的,所以需要获得绝对时间传递给sendMessageAtTime
 public final boolean sendMessageDelayed(Message msg, long delayMillis)
   {
     if (delayMillis < 0) {
       delayMillis = 0;
     }
     return sendMessageAtTime(msg, SystemClock.uptimeMillis() + delayMillis);
   }

 public boolean sendMessageAtTime(Message msg, long uptimeMillis)
   {
     boolean sent = false;
     MessageQueue queue = mQueue;
     if (queue != null) {
 //把消息的target设置为自己,然后加入到消息队列中
 //对于队列这种数据结构来说,操作比较简单了
       msg.target = this;
       sent = queue.enqueueMessage(msg, uptimeMillis);
     }
     else {
       RuntimeException e = new RuntimeException(
         this + " sendMessageAtTime() called with no mQueue");
       Log.w("Looper", e.getMessage(), e);
     }
     return sent;
   }
 //还记得looper中的那个消息循环处理吗
 //从消息队列中得到一个消息后,会调用它的target的dispatchMesage函数
 //message的target已经设置为handler了,所以
 //最后会转到handler的msg处理上来
 //这里有个处理流程的问题
 public void dispatchMessage(Message msg) {
 //如果msg本身设置了callback,则直接交给这个callback处理了
     if (msg.callback != null) {
       handleCallback(msg);
     } else {
 //如果该handler的callback有的话,则交给这个callback处理了---相当于集中处理
      if (mCallback != null) {
         if (mCallback.handleMessage(msg)) {
           return;
         }
      }
 //否则交给派生处理,基类默认处理是什么都不干
       handleMessage(msg);
     }
   }
 ..........
 }

生成

    Message msg = mHandler.obtainMessage();
    msg.what = what;
    msg.sendToTarget();

发送

    MessageQueue queue = mQueue;
    if (queue != null) {
      msg.target = this;
      sent = queue.enqueueMessage(msg, uptimeMillis);
    }

在Handler.java的sendMessageAtTime(Message msg, long uptimeMillis)方法中,我们看到,它找到它所引用的MessageQueue,然后将Message的target设定成自己(目的是为了在处理消息环节,Message能找到正确的Handler),再将这个Message纳入到消息队列中。

抽取

    Looper me = myLooper();
    MessageQueue queue = me.mQueue;
    while (true) {
      Message msg = queue.next(); // might block
      if (msg != null) {
        if (msg.target == null) {
          // No target is a magic identifier for the quit message.
          return;
        }
        msg.target.dispatchMessage(msg);
        msg.recycle();
      }
    }

在Looper.java的loop()函数里,我们看到,这里有一个死循环,不断地从MessageQueue中获取下一个(next方法)Message,然后通过Message中携带的target信息,交由正确的Handler处理(dispatchMessage方法)。

处理

    if (msg.callback != null) {
      handleCallback(msg);
    } else {
      if (mCallback != null) {
        if (mCallback.handleMessage(msg)) {
          return;
        }
      }
      handleMessage(msg);
    }

在Handler.java的dispatchMessage(Message msg)方法里,其中的一个分支就是调用handleMessage方法来处理这条Message,而这也正是我们在职责处描述使用Handler时需要实现handleMessage(Message msg)的原因。

至于dispatchMessage方法中的另外一个分支,我将会在后面的内容中说明。

至此,我们看到,一个Message经由Handler的发送,MessageQueue的入队,Looper的抽取,又再一次地回到Handler的怀抱。而绕的这一圈,也正好帮助我们将同步操作变成了异步操作。

3)剩下的部分,我们将讨论一下Handler所处的线程及更新UI的方式。

在主线程(UI线程)里,如果创建Handler时不传入Looper对象,那么将直接使用主线程(UI线程)的Looper对象(系统已经帮我们创建了);在其它线程里,如果创建Handler时不传入Looper对象,那么,这个Handler将不能接收处理消息。在这种情况下,通用的作法是:

        class LooperThread extends Thread {
                public Handler mHandler;
                public void run() {
                        Looper.prepare();
                        mHandler = new Handler() {
                                public void handleMessage(Message msg) {
                                       // process incoming messages here
                                }
                        };
                        Looper.loop();
                }
        }

在创建Handler之前,为该线程准备好一个Looper(Looper.prepare),然后让这个Looper跑起来(Looper.loop),抽取Message,这样,Handler才能正常工作。

因此,Handler处理消息总是在创建Handler的线程里运行。而我们的消息处理中,不乏更新UI的操作,不正确的线程直接更新UI将引发异常。因此,需要时刻关心Handler在哪个线程里创建的。

如何更新UI才能不出异常呢?SDK告诉我们,有以下4种方式可以从其它线程访问UI线程:

·      Activity.runOnUiThread(Runnable)
·      View.post(Runnable)
·      View.postDelayed(Runnable, long)
·      Handler
其中,重点说一下的是View.post(Runnable)方法。在post(Runnable action)方法里,View获得当前线程(即UI线程)的Handler,然后将action对象post到Handler里。在Handler里,它将传递过来的action对象包装成一个Message(Message的callback为action),然后将其投入UI线程的消息循环中。在Handler再次处理该Message时,有一条分支(未解释的那条)就是为它所设,直接调用runnable的run方法。而此时,已经路由到UI线程里,因此,我们可以毫无顾虑的来更新UI。

4) 几点小结

·      Handler的处理过程运行在创建Handler的线程里
·      一个Looper对应一个MessageQueue
·      一个线程对应一个Looper
·      一个Looper可以对应多个Handler
·      不确定当前线程时,更新UI时尽量调用post方法

(0)

相关推荐

  • android开发教程之使用looper处理消息队列

    复制代码 代码如下: package com.yanjun; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.os.HandlerThread; import android.os.Looper; import android.os.Message; public class HandlerActivity extends Activity { @Ov

  • android的消息处理机制(图文+源码分析)—Looper/Handler/Message

    这篇文章写的非常好,深入浅出,关键还是一位大三学生自己剖析的心得.这是我喜欢此文的原因.下面请看正文: 作为一个大三的预备程序员,我学习android的一大乐趣是可以通过源码学习google大牛们的设计思想.android源码中包含了大量的设 计模式,除此以外,android sdk还精心为我们设计了各种helper类,对于和我一样渴望水平得到进阶的人来说,都太值得一读了.这不,前几天为了了解android的消息处理机 制,我看了Looper,Handler,Message这几个类的源码,结果又

  • Android开发中Looper.prepare()和Looper.loop()

    什么时候需要 Looper Looper用于封装了android线程中的消息循环,默认情况下一个线程是不存在消息循环(message loop)的,需要调用Looper.prepare()来给线程创建一个消息循环,调用Looper.loop()来使消息循环起作用,使用Looper.prepare()和Looper.loop()创建了消息队列就可以让消息处理在该线程中完成. 使用Looper需要注意什么 写在Looper.loop()之后的代码不会被立即执行,当调用后mHandler.getLoo

  • Android 线程之自定义带消息循环Looper的实例

    Android 线程之自定义带消息循环Looper的实例 Android系统的UI线程是一种带消息循环(Looper)机制的线程,同时Android也提供了封装有消息循环(Looper)的HandlerThread类,这种线程,可以绑定Handler()对象,并通过Handler的sendMessage()函数向线程发送消息,通过handleMessage()函数,处理线程接收到的消息.这么说比较抽象,那么,本文就利用基础的Java类库,实现一个带消息循环(Looper)的线程,以帮助初学者理解

  • Android开发笔记之:消息循环与Looper的详解

    Understanding LooperLooper是用于给一个线程添加一个消息队列(MessageQueue),并且循环等待,当有消息时会唤起线程来处理消息的一个工具,直到线程结束为止.通常情况下不会用到Looper,因为对于Activity,Service等系统组件,Frameworks已经为我们初始化好了线程(俗称的UI线程或主线程),在其内含有一个Looper,和由Looper创建的消息队列,所以主线程会一直运行,处理用户事件,直到某些事件(BACK)退出.如果,我们需要新建一个线程,并

  • Android中的Looper对象详细介绍

    Java 官网对Looper对象的说明: public class Looperextends ObjectClass 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 loo

  • Android消息处理机制Looper和Handler详解

    Message:消息,其中包含了消息ID,消息处理对象以及处理的数据等,由MessageQueue统一列队,终由Handler处理. Handler:处理者,负责Message的发送及处理.使用Handler时,需要实现handleMessage(Message msg)方法来对特定的Message进行处理,例如更新UI等. MessageQueue:消息队列,用来存放Handler发送过来的消息,并按照FIFO规则执行.当然,存放Message并非实际意义的保存,而是将Message以链表的方

  • 详解Android 消息处理机制

    摘要 Android应用程序是通过消息来驱动的,当Android主线程启动时就会在内部创建一个消息队列.然后进入一个无限循环中,轮询是否有新的消息需要处理.如果有新消息就处理新消息.如果没有消息,就进入阻塞状态,直到消息循环被唤醒. 那么在Android系统中,消息处理机制是怎么实现的呢?在程序开发时,我们经常会使用Handler处理Message(消息).所以可以知道Handler是个消息处理者,Message是消息主体.除此之外还有消息队列和消息轮询两个角色.它们分别是MessageQueu

  • Android入门之在子线程中调用Handler详解

    目录 简介 本章示例 前端代码 后端代码 简介 前一章我们以一个简单的小动画来解释了Handler. 这章我们会介绍在子线程里写Handler.如果是Handler写在了子线程中的话,我们就需要自己创建一个Looper对象了:创建的流程如下: 直接调用Looper.prepare()方法即可为当前线程创建Looper对象,而它的构造器会创建配套的MessageQueue; 创建Handler对象,重写handleMessage( )方法就可以处理来自于其他线程的信息了! 调用Looper.loo

  • Netty的Handler链调用机制及如何组织详解

    目录 什么是 Handler Handler 是怎么被组织起来的 Handler 链调用机制 简述 ChannelPipeline 如何调度 handler 什么是 Handler Netty是一款基于NIO的异步事件驱动网络应用框架,其核心概念之一就是Handler.而Handler是Netty中处理事件的核心组件,用于处理入站和出站的数据流,实现业务逻辑和网络协议的处理. 在Netty中,Handler是一个接口,主要分为两种:ChannelInboundHandler(入站Handler)

  • Android事件处理的两种方式详解

    安卓提供了两种方式的事件处理:基于回调的事件处理和基于监听的事件处理. 基于监听的事件处理 基于监听的事件处理一般包含三个要素,分别是: Event Source(事件源):事件发生的场所,通常是各个组件 Event(事件):事件封装了界面组件上发生的特定事件(通常就是用户的一次操作) Event Listener(事件监听器):负责监听事件源发生的事件,并对各种事件作出相应的响应 下面使用一个简单的案例介绍按钮事件监听器 布局文件就是简单的线性布局器,上面是一个EditText,下面是一个Bu

  • Android View的事件体系教程详解

    目录 一.什么是View?什么是ViewGroup? 二.View的位置 三.View的触摸事件 1.MotionEvent 2.TouchSlop 3.VelocityTracker 5.Scroller 四.View的滑动 1)使用Scroll 2)通过动画 3)使用延时策略 五.View的事件分发机制 六.View的滑动冲突问题 View的滑动冲突常见可以简单分为三种: 滑动冲突的处理规则 滑动冲突的解决方法 一.什么是View?什么是ViewGroup? View是Android中所有控

  • Android 全局通知弹窗示例分析详解

    目录 需求分析 一.Dialog的编写 二.获取当前显示的Activity的弱引用 三.封装和使用 需求分析 如何创建一个全局通知的弹窗?如下图所示. 从手机顶部划入,短暂停留后,再从顶部划出. 首先需要明确的是: 1.这个弹窗的弹出逻辑不一定是当前界面编写的,比如用户上传文件,用户可能继续浏览其他页面的内容,但是监听文件是否上传完成还是在原来的Activity,但是Dialog的弹出是需要当前页面的上下文Context的. 2.Dialog弹窗必须支持手势,用户在Dialog上向上滑时,Dia

  • Android 打包三种方式实例详解

     Android 打包三种方式实例详解 前言: 现在市场上很多app应用存在于各个不同的渠道,大大小小几百个,当我们想要在发布应用之后统计各个渠道的用户下载量,我们就要进行多渠道打包. 01.应用的打包签名什么是打包? 打包就是根据签名和其他标识生成安装包. 签名是什么? 1.在android应用文件(apk)中保存的一个特别字符串 2.用来标识不同的应用开发者:开发者A,开发者B 3.一个应用开发者开发的多款应用使用同一个签名 就好比是一个人写文章,签名就相当于作者的署名. 如果两个应用都是一

  • Android 控制ScrollView滚动的实例详解

    Android 控制ScrollView滚动的实例详解 在开发中,我们经常需要更新列表,并将列表拉倒最底部,比如发表微博,聊天界面等等, 这里有两种办法,第一种,使用scrollTo(): public static void scrollToBottom(final View scroll, final View inner) { Handler mHandler = new Handler(); mHandler.post(new Runnable() { public void run()

  • Android 中RecyclerView顶部刷新实现详解

    Android 中RecyclerView顶部刷新实现详解 1. RecyclerView顶部刷新的原理 RecyclerView顶部刷新的实现通常都是在RecyclerView外部再包裹一层布局.在这个外层布局中,还包含一个自定义的View,作为顶部刷新时的指示View.也就是说,外层布局中包含两个child,一个顶部刷新View,一个RecyclerView,顶部刷新View默认是隐藏不可见的.在外层布局中对滑动事件进行处理,当RecyclerView滑动到顶部并继续下滑的时候,根据滑动的距

随机推荐