Android中Looper、Handler、Thread、Message的分析

关于这几个技术术语,让我们从Android的实际使用中来渐渐理清它们。

1. Looper的初始化

Application被创建时,ActivityThread的main函数会被调用,其中初始化了一个Looper

Looper.prepareMainLooper();

其实现在Looper.java中:

    /**
     * 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.  See also: {@link #prepare()}
     */
    public static void prepareMainLooper() {
        prepare(false); //进行初始化
        synchronized (Looper.class) {
            if (sMainLooper != null) {
                throw new IllegalStateException("The main Looper has already been prepared.");
            }
            sMainLooper = myLooper(); //赋值
        }
    }

prepare(false)是对Looper进行初始化, 初始化之后调用将Looper对象赋值给sMainLooper. 所以我们只需要看prepare函数:

    ......
    static final ThreadLocal<Looper> sThreadLocal = new ThreadLocal();
    ......

    private static void prepare(boolean quitAllowed) {
        if(sThreadLocal.get() != null) {
            throw new RuntimeException("Only one Looper may be created per thread");
        } else {
            sThreadLocal.set(new Looper(quitAllowed)); //创建一个Looper对象,放入ThreadLocal中
        }
    }

从之前的描述可以看出,Looper是一个单例,所以其构造函数是private的:

    private Looper(boolean quitAllowed) {
        this.mQueue = new MessageQueue(quitAllowed);
        this.mRun = true;
        this.mThread = Thread.currentThread();
    }

2. 初始化MessageQueue

上面的Looper的构造函数中又初始化了一个MessageQueue,这里又引出了一个重要的对象MessageQueue . 每个Looper都保持一个MessageQueue用来存放Message. 这里只需要记住Looper和MessageQueue的关系即可.下面是MessageQueue 的构造函数:

/**
 * Low-level class holding the list of messages to be dispatched by a
 * Looper.  Messages are not added directly to a MessageQueue,
 * but rather through  Handler objects associated with the Looper.
 * 
 * You can retrieve the MessageQueue for the current thread with
 *  Looper.myQueue().
 */


    MessageQueue(boolean quitAllowed) {
        mQuitAllowed = quitAllowed;
        mPtr = nativeInit();
    }

从构造函数上面的描述可以看到,Message是不能直接加入到MessageQueue中的, 必须通过Handler来添加. 这里你可能会有疑问,为什么Message不能直接加入到MessageQueue里面呢?带着这个问题我们继续向下看。

3. 创建ActivityThread对象

Looper初始化完成后, 回到ActivityThread的main函数, 这里还创建了一个ActivityThread对象,对App来说,ActivityThread是一个非常重要的类,

        //初始化ActivityThread
        ActivityThread thread = new ActivityThread();
        thread.attach(false);

        if (sMainThreadHandler == null) {
            sMainThreadHandler = thread.getHandler();
        }

ActivityThread的构造函数中初始化了ResourcesManager,保存在mResourcesManager中. thread.attach(false)这个比较重要,是进行一些状态的设置和初始化. 随后会初始化这个应用程序UI线程的Handle .下面是getHandler()

    final Handler getHandler() {
        return mH;
    }

其中mH的定义如下:

private class H extends Handler {
        public void handleMessage(Message msg) {
            if (DEBUG_MESSAGES) Slog.v(TAG, ">>> handling: " + codeToString(msg.what));
            switch (msg.what) {
                case LAUNCH_ACTIVITY: {
                    final ActivityClientRecord r = (ActivityClientRecord) msg.obj;
                    r.packageInfo = getPackageInfoNoCheck(
                            r.activityInfo.applicationInfo, r.compatInfo);
                    handleLaunchActivity(r, null);
                } break;
                case RELAUNCH_ACTIVITY: {
                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityRestart");
                    ActivityClientRecord r = (ActivityClientRecord)msg.obj;
                    handleRelaunchActivity(r);
                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);

        }
}

其handleMessage这个函数很长,仔细看就可以发现,这里调度了应用开发中各个组件的生命周期.包括activityRestart/activityPause/activityStop/activityDestroy/activityNewIntent等等.

4. 执行消息循环

随后main函数会调用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();
        ......
        final MessageQueue queue = me.mQueue;
        ......
        for (;;) {
            Message msg = queue.next(); // might block
            .......
            msg.target.dispatchMessage(msg);
            ......
            msg.recycleUnchecked();
        }
    }

可以看到其中调用了一个死循环for (;;),在循环开始调用

Message msg = queue.next(); // might block

来从MessageQueue中获取Message来进行处理.注意到MessageQueue的next函数会调用this.nativePollOnce(this.mPtr, nextPollTimeoutMillis); 这是一个阻塞方法. 会调用到Native层的Looper的一些方法. 当有消息的时候,就会返回一个Message.

这时候一个Activity的Handle/ Looper / MessageQueue都已经跑起来了.他们直接的关系也清楚了.

5. 自己创建的Handler与Looper和MessageQueue之间的关系

在Android开发中,我们一般会自己创建一个Handler,然后发送Message进行通信 (典型场景就是创建一个子线程, 在其中执行耗时较多的操作,然后发一个Message通知UI更新)

第一种写法:无参数的Handler

    Handler defaultHandler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            switch (msg.what) {
                case MSG_HELLO:
                    Log.w(TAG, "defaultHandler ThreadName = "
                            + defaultHandler.getLooper().getThread().getName());
            }
        }
    };
......

//使用
        new Thread(){
            @Override
            public void run() {
                defaultHandler.sendEmptyMessage(MSG_HELLO);
            }
        }.start();

其打印结果如下:

Thread Name

这种写法创建的Handler,将自动与当前运行的线程相关联,也就是说这个自定义的Handler将与当前运行的线程使用同一个消息队列,并且可以处理该队列中的消息.如果不太理解这个可以查看Handler的构造函数:

    public Handler(Callback callback, boolean async) {
        ......
        mLooper = Looper.myLooper();
        ......
        mQueue = mLooper.mQueue;
        mCallback = callback;
        mAsynchronous = async;
    }

可以看到, Handler中的mLooper和mQueue就是之前ActivityThread中初始化好的.由于Looper是单例,也就是说mLooper和mQueue都只有一个, 而Handler的sendMessage最终会调用sendMessageAtTime:

    public boolean sendMessageAtTime(Message msg, long uptimeMillis) {
        MessageQueue queue = mQueue;
        ......
        return enqueueMessage(queue, msg, uptimeMillis);
    }

看到这里,应该对自己创建的Handler和MessageQueue以及Looper直接的关系更清楚了.

第二种写法:参数包含Looper的Handler

Handler有好几个构造函数,其中如果参数中不包含Looper,则最终会进入第一种写法中的那个构造函数,如果参数中包含Looper,则会进入到三个参数的构造函数中:

    /**
     * Use the provided Looper instead of the default one and take a callback
     * interface in which to handle messages.  Also set whether the handler
     * should be asynchronous.
     *
     * Handlers are synchronous by default unless this constructor is used to make
     * one that is strictly asynchronous.
     *
     * Asynchronous messages represent interrupts or events that do not require global ordering
     * with represent to synchronous messages.  Asynchronous messages are not subject to
     * the synchronization barriers introduced by MessageQueue#enqueueSyncBarrier(long).
     *
     * @param looper The looper, must not be null.
     * @param callback The callback interface in which to handle messages, or null.
     * @param async If true, the handler calls  Message#setAsynchronous(boolean) for
     * each Message that is sent to it or Runnable that is posted to it.
     *
     * @hide
     */
    public Handler(Looper looper, Callback callback, boolean async) {
        mLooper = looper;
        mQueue = looper.mQueue;
        mCallback = callback;
        mAsynchronous = async;
    }

这种Handler初始化的时候必须创建一个Looper对象

    Handler mHandler;

    class CustomThread extends Thread {

        @Override
        public void run() {
            Looper.prepare();
            mHandler = new Handler() {
                @Override
                public void handleMessage(Message msg) {
                    switch (msg.what) {
                        case MSG_HELLO:
                            Log.w(TAG, "defaultHandler ThreadName = "
                            + defaultHandler.getLooper().getThread().getName());
                            break;
                        default:
                            break;
                    }
                }
            };
            Looper.loop();
        }
    }

//使用
        CustomThread mCustomThread = new CustomThread();
        mCustomThread.start();

我给TextView加了一个点击事件,点击会打印对应的线程名:

        appNameText.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                mHandler.sendEmptyMessage(MSG_HELLO);
                Log.w(TAG, "MainThreadName =" + getMainLooper().getThread().getName());
            }
        });

其结果如下:

Different Thread

通过上面两个例子,你应该对Thread/Looper/MessageQueue/Handler有更深入的了解了.

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容