Android之Thread、Handler、HandlerThread

一、如何在Thread中使用Handler?

  1. 在UI Thread中使用Handler

通常,开发者会在UI Thread直接初始化Handler,用于处理各种Message消息,实际上是用Looper主循环器,从MessageQueue消息队列中循环获取消息。那么这个Looper对象是怎么来的?大家很清楚可以通过Looper.getMainLooper获取,Looper.java源代码如下:

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

那么sMainLooper又是什么时候被初始化的,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();
        }
    }

注解中已经讲解的很清楚:

调用prepareMainLooper初始化一个Looper,作为Application的main looper,prepareMainLooper会被Android FrameWork直接调用,所以不需要开发者关心。

那么,OK,在UI Thread中,Android FrameWork 会帮助我们初始化main looper,那么我们other Thread中如何使用Handler

  1. non-UI Thread 使用Handler
    首先看如下代码执行结果
    new Thread(new Runnable() {
            @Override
            public void run() {
                Log.d(TAG, "non-ui thread start, thread id: " + Thread.currentThread().getId());
                Handler handler = new Handler();
                handler.post(new Runnable() {
                    @Override
                    public void run() {
                        Log.d(TAG, "runnable run() be called, thread id: " + Thread.currentThread().getId());
                    }
                });
                ESLog.d(TAG, "non-ui thread end");
            }
        }).start();

我们期望runnable run() be called...能够被打印,这样就完成了我们的目标,但是Log输出的内容如下:

30659 30827 E AndroidRuntime: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
30659 30827 E AndroidRuntime:   at android.os.Handler.<init>(Handler.java:200)
30659 30827 E AndroidRuntime:   at android.os.Handler.<init>(Handler.java:114)
30659 30827 E AndroidRuntime:   at java.lang.Thread.run(Thread.java:818)

找到上面的异常输出内容,是在Handler.java源代码中:

public Handler(Callback callback, boolean async) {
        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());
            }
        }
        mLooper = Looper.myLooper();
        if (mLooper == null) {
            throw new RuntimeException(
                "Can't create handler inside thread that has not called Looper.prepare()");
        }
        mQueue = mLooper.mQueue;
        mCallback = callback;
        mAsynchronous = async;
    }

使用为Looper.mylooper没有获取到当前线程的looper对象,OK,看一下此方法的实现。

public static @Nullable Looper myLooper() {
    return sThreadLocal.get();
}

因为ThreadLocal用来提供线程局部变量,多个线程之间相互隔离,所有说sThreadLocal中,没有当前线程的Looper实例,另外错误输出中已经提示,咱没调用Looper.prepare(),看一下此方法的源码实现。

private static void prepare(boolean quitAllowed) {
        if (sThreadLocal.get() != null) {
            throw new RuntimeException("Only one Looper may be created per thread");
        }
        sThreadLocal.set(new Looper(quitAllowed));
    }

向ThreadLocal中添加一份Looper的新实例。OK,我们更新一下程序:

new Thread(new Runnable() {
    @Override
    public void run() {
      Looper.prepare();  // 第一次改动新添加一行
      Log.d(TAG, "non-ui thread start, thread id: " + Thread.currentThread().getId());
      Handler handler = new Handler();
      handler.post(new Runnable() {
        @Override
        public void run() {
          Log.d(TAG, "runnable run() be called, thread id: " + Thread.currentThread().getId());
        }
      });
      if (BuildConfig.DEBUG_LOG) {
         ESLog.d(TAG, "non-ui thread end");
      }
    }
}).start();

执行程序,Log输出如下:

31676 31775 D TestHandler: non-ui thread start, thread id: 556
31676 31775 D ES-File : {Thread-556}[TestHandler] non-ui thread end

什么鬼,我的Handler#post中的输出runnable run() be called, thread id: ...哪里去了?继续看源码,发现Looper.java中有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
            ---省略部分---
        }
    }

OK,使用Handler#post会向MessageQueue中添加一个Message,但是我们上面实现的代码,没有实现从消息队列中取消息去执行的逻辑,但是Looper#loop可以实现。所以我们在更新一下代码:

new Thread(new Runnable() {
    @Override
    public void run() {
      Looper.prepare();  // 第一次改动新添加代码
      Log.d(TAG, "non-ui thread start, thread id: " + Thread.currentThread().getId());
      Handler handler = new Handler();
      handler.post(new Runnable() {
        @Override
        public void run() {
          Log.d(TAG, "runnable run() be called, thread id: " + Thread.currentThread().getId());
        }
      });
      if (BuildConfig.DEBUG_LOG) {
         ESLog.d(TAG, "non-ui thread end");
      }
      Looper.loop();  // 第二次改动新添加代码
    }
}).start();

Log输出内容如下,终于达成了我们的预期 GOOD。

32064 32188 D TestHandler: non-ui thread start, thread id: 565
32064 32188 D ES-File : {Thread-565}[TestHandler] non-ui thread end
32064 32188 D TestHandler: runnable run() be called, thread id: 565

切记: 从looper#loop的源码中可以看出,loop被调用后,一直在执行一个死循环,所以Looper.loop()后面不要实现任何代码逻辑,因为永远都不会执行到,除非执行Looper#quit

二、 HandlerThread 有何用途,和Thread有什么区别?

首先,我们来看一下HandlerThread.java的关键实现

public class HandlerThread extends Thread {
  @Override
   public void run() {
     mTid = Process.myTid();
     Looper.prepare();
     synchronized (this) {
        mLooper = Looper.myLooper();
        notifyAll();
      }
     Process.setThreadPriority(mPriority);
     onLooperPrepared();
     Looper.loop();
     mTid = -1;
    }
}

一目了然,HandlerThread的run函数,实现了我们刚才为了实现在non-ui tread中使用Handler而多添加的所有逻辑。并且HandlerThread继承自Thread。所以,如果我们现在非UI线程中使用Handler,最简单的代码实现如下:

public void initHandler(){
    HandlerThread handlerThread = new HandlerThread("auto-back-up");
    handlerThread.setPriority(android.os.Process.THREAD_PRIORITY_BACKGROUND);
    handlerThread.start();
    mHandler = new Handler(handlerThread.getLooper());
}

其余正常使用Handler 即可,OK,完成,有疑问或者有表述不清楚的地方,欢迎评论。

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

推荐阅读更多精彩内容