Handler機(jī)制

handle 首先想到的是和線程的關(guān)系癣防。

  • 來看一下官方源碼花墩。
//ActivityThread中的main方法
   Looper.prepareMainLooper();

  // Find the value for {@link #PROC_START_SEQ_IDENT} if provided   on the command line.
  // It will be in the format "seq=114"
  long startSeq = 0;
  if (args != null) {
    for (int i = args.length - 1; i >= 0; --i)
  {
      if (args[i] != null &&args[i].startsWith(PROC_START_SEQ_IDENT)) {
           startSeq = Long.parseLong(
           args[i].substring(PROC_START_SEQ_IDENT.length()));
                  }
         }
  }
  ActivityThread thread = new ActivityThread();
  thread.attach(false, startSeq);
  if (sMainThreadHandler == null) {
          sMainThreadHandler = thread.getHandler();
  }
  if (false) 
  {
   Looper.myLooper().setMessageLogging(newLogPrinter(
          Log.DEBUG, "ActivityThread"));
  }

  // End of event ActivityThreadMain.
  Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
  Looper.loop();

  • 再來看一下Looper中的方法
/**
     * 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();
        if (me == null) {
            throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.");
        }
        final MessageQueue queue = me.mQueue;
          ......
        for (;;) {
            Message msg = queue.next(); // might block
            if (msg == null) {
                // No message indicates that the message queue is quitting.
                return;
            }

           ......
           
            try {
                msg.target.dispatchMessage(msg);
                dispatchEnd = needEndTime ? SystemClock.uptimeMillis() : 0;
            } finally {
                if (traceTag != 0) {
                    Trace.traceEnd(traceTag);
                }
            }
           ......

            msg.recycleUnchecked();
        }
    }

里面起了個(gè)死循環(huán)不斷的重MessageQueue中取出Message,msg.target其實(shí)就是Handler翠订。

  • 看一下prepareMainLooper()中干了什么事情峰伙?
    static final ThreadLocal<Looper> sThreadLocal = new ThreadLocal<Looper>();
    private static Looper sMainLooper;  // guarded by Looper.class

    final MessageQueue mQueue;
    final Thread mThread;

    public static void prepareMainLooper() {
        prepare(false);
        synchronized (Looper.class) {
            if (sMainLooper != null) {
                throw new IllegalStateException("The main Looper has already been prepared.");
            }
            sMainLooper = myLooper();
        }
    }
    public static void prepare() {
        prepare(true);
    }
    public static @Nullable Looper myLooper() {
        return sThreadLocal.get();
    }
    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綁定線程的缓醋。這里的ThreadLocal是一個(gè)鍵值對的結(jié)構(gòu)體如失。通過靜態(tài)的prepare方法保證線程安全,每個(gè)線程只能綁定一個(gè)Looper送粱。

  • 再來看一下msg.target.dispatchMessage(msg)這個(gè)方法的源碼褪贵。
/**
     * Subclasses must implement this to receive messages.
     */
  public void handleMessage(Message msg) {
    }
    
    /**
     * Handle system messages here.
     */
  public void dispatchMessage(Message msg) {
        if (msg.callback != null) {
            handleCallback(msg);
        } else {
            if (mCallback != null) {
                if (mCallback.handleMessage(msg)) {
                    return;
                }
            }
            handleMessage(msg);
        }
    }
  private static void handleCallback(Message message) {
        message.callback.run();
    }

這里很明顯看出dispatchMessage先調(diào)用msg中callback方法,其次調(diào)用Handler自己的Callback,最后調(diào)用handleMessage方法抗俄。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末脆丁,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子橄镜,更是在濱河造成了極大的恐慌偎快,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,080評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件洽胶,死亡現(xiàn)場離奇詭異晒夹,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)姊氓,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,422評論 3 385
  • 文/潘曉璐 我一進(jìn)店門丐怯,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人翔横,你說我怎么就攤上這事读跷。” “怎么了禾唁?”我有些...
    開封第一講書人閱讀 157,630評論 0 348
  • 文/不壞的土叔 我叫張陵效览,是天一觀的道長无切。 經(jīng)常有香客問我,道長丐枉,這世上最難降的妖魔是什么哆键? 我笑而不...
    開封第一講書人閱讀 56,554評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮瘦锹,結(jié)果婚禮上籍嘹,老公的妹妹穿的比我還像新娘。我一直安慰自己弯院,他們只是感情好辱士,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,662評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著听绳,像睡著了一般颂碘。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上辫红,一...
    開封第一講書人閱讀 49,856評論 1 290
  • 那天凭涂,我揣著相機(jī)與錄音,去河邊找鬼贴妻。 笑死,一個(gè)胖子當(dāng)著我的面吹牛蝙斜,可吹牛的內(nèi)容都是我干的名惩。 我是一名探鬼主播,決...
    沈念sama閱讀 39,014評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼孕荠,長吁一口氣:“原來是場噩夢啊……” “哼娩鹉!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起稚伍,我...
    開封第一講書人閱讀 37,752評論 0 268
  • 序言:老撾萬榮一對情侶失蹤弯予,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后个曙,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體锈嫩,經(jīng)...
    沈念sama閱讀 44,212評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,541評論 2 327
  • 正文 我和宋清朗相戀三年垦搬,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了呼寸。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,687評論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡猴贰,死狀恐怖对雪,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情米绕,我是刑警寧澤瑟捣,帶...
    沈念sama閱讀 34,347評論 4 331
  • 正文 年R本政府宣布馋艺,位于F島的核電站,受9級特大地震影響迈套,放射性物質(zhì)發(fā)生泄漏捐祠。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,973評論 3 315
  • 文/蒙蒙 一交汤、第九天 我趴在偏房一處隱蔽的房頂上張望雏赦。 院中可真熱鬧,春花似錦芙扎、人聲如沸星岗。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,777評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽俏橘。三九已至,卻和暖如春圈浇,著一層夾襖步出監(jiān)牢的瞬間寥掐,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,006評論 1 266
  • 我被黑心中介騙來泰國打工磷蜀, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留召耘,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,406評論 2 360
  • 正文 我出身青樓褐隆,卻偏偏與公主長得像污它,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子庶弃,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,576評論 2 349