当前位置:  编程技术>移动开发

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

    来源: 互联网  发布时间:2014-10-26

    本文导语:  Message:消息,其中包含了消息ID,消息处理对象以及处理的数据等,由MessageQueue统一列队,终由Handler处理。 Handler:处理者,负责Message的发送及处理。使用Handler时,需要实现handleMessage(Message msg)方法来对特定的Message进行处...

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(
             "

    
 
 

您可能感兴趣的文章:

  • 深入android Unable to resolve target 'android-XX'详解
  • Android工程:引用另一个Android工程的方法详解
  • Android TextView设置背景色与边框的方法详解
  • Android中的android:layout_weight使用详解
  • Android 实现永久保存数据的方法详解
  • 在android开发中尽量不要使用中文路径的问题详解
  • android开发环境搭建详解(eclipse + android sdk)
  • android双缓冲技术实例详解
  • 深入Android开发FAQ的详解
  • Android开发笔记之:一分钟学会使用Logcat调试程序的详解
  • Android对sdcard扩展卡文件操作实例详解
  • Android笔记之:onConfigurationChanged详解
  • Android 动画之AlphaAnimation应用详解
  • 解析后台进程对Android性能影响的详解
  • android ListView 一些重要属性详解
  • 解决Fedora14下eclipse进行android开发,ibus提示没有输入窗口的方法详解
  • Windows下获取Android 源码方法的详解
  • Android selector背景选择器的使用详解
  • Android 动画之RotateAnimation应用详解
  • Handler与Android多线程详解
  • android 4.0 托管进程介绍及优先级和回收机制
  • android IPC之binder通信机制
  • Android开发之广播机制浅析
  • 解析Android应用程序运行机制
  • Android多线程处理机制中的Handler使用介绍
  • 详细介绍Android中回调函数机制
  • 深入理解Android组件间通信机制对面向对象特性的影响详解
  • android的消息处理机制(图文+源码分析)—Looper/Handler/Message
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • android开发教程之android的handler使用方法
  • android使用handler ui线程和子线程通讯更新ui示例
  • android开发教程之handler异步更新ui
  • Android Handler的详细介绍
  • Android Handler主线程和一般线程通信的应用分析
  • Android Handler之消息循环的深入解析
  • 深入Android Handler与线程间通信ITC的详解
  • android Handler详细使用方法实例
  • Android开发笔记之:Handler Runnable与Thread的区别详解
  • 申请Android Map 的API Key(v2)的最新申请方式(SHA1密钥)
  • Android瀑布流实例 android_waterfall
  • Android开发需要的几点注意事项总结
  • Android系统自带样式 (android:theme)
  • Android访问与手机通讯相关类的介绍
  • Android网络共享软件 Android Wifi Tether
  • Android及andriod无线网络Wifi开发的几点注意事项
  • Android 图标库 Android GraphView
  • Android 2.3 下StrictMode介绍
  • 轻量级Android开发工具 Android Tools
  • Android 开发环境 Android Studio
  • IDEA的Android开发插件 idea-android
  • Android手机事件提醒 Android Notifier
  • XBMC的Android客户端 android-xbmcremote
  • Android小游戏 Android Shapes
  • Android电池监控 Android Battery Dog
  • android开发:“android:WindowTitle”没有对应项no resource
  • Android 上类似IOS 的开关控件。 Android ToggleButton
  • Android 将 android view 的位置设为右下角的解决方法
  • Android Handler主线程和一般线程通信的应用分析 iis7站长之家
  • Android的UI工具包 android-ui-utils




  • 特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3