Android消息機制

一:子線程更新UI

安卓是單線程模型贴汪,那么子線程中是否能更新UI呢务嫡,答案是可以赚爵。

我們可以自己給它一個ViewRoot(WindowManager的addView中會走到new ViewRootImpl),這樣ViewRoot的線程和view更新的線程在同一線程中理张,checkThread方法便可以執(zhí)行通過析藕,或者Activity中的ViewRootImpl初始化之前(onResume)更新UI召廷。

第一種情況:WindowManager可以提供ViewRoot,這樣就可以用WindowManager更新UI账胧,WindowManager內(nèi)部是通過Handler機制(addView在隊列里加入view更新的消息隊列柱恤,通過handler取出更新UI)所以需要Looper.prepare和looper開啟子線程消息循環(huán)。

new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    Thread.sleep(200);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                Looper.prepare();
                TextView tx = new TextView(MainActivity.this);
                WindowManager windowManager = MainActivity.this.getWindowManager();
                WindowManager.LayoutParams params = new WindowManager.LayoutParams(
                        200, 200, 200, 200, WindowManager.LayoutParams.FIRST_SUB_WINDOW,
                        WindowManager.LayoutParams.TYPE_TOAST, PixelFormat.OPAQUE);
                windowManager.removeViewImmediate(tx);
                windowManager.addView(tx, params);
                Looper.loop();
//                ((TextView)findViewById(R.id.txt)).setText("子線程改變ui");
            }
        }).start();

第二種情況:

Activity的onResume中才會初始化ViewRootImpl找爱,所以在onCreate和onResume周期之間的簡短時間內(nèi)可以執(zhí)行子線程更新UI操作

 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        new Thread(new Runnable() {
            @Override
            public void run() {
                ((TextView)findViewById(R.id.txt)).setText("子線程改變ui");
            }
        }).start();

二:子線程彈Toast

源碼分析

public void show() {
        if (mNextView == null) {
            throw new RuntimeException("setView must have been called");
        }
        INotificationManager service = getService();
        String pkg = mContext.getOpPackageName();
        TN tn = mTN; ##TN真正實現(xiàn)toast顯示到Window上
        tn.mNextView = mNextView;
        try {
            service.enqueueToast(pkg, tn, mDuration);
        } catch (RemoteException e) {
            // Empty
        }
    }

TN源碼

private static class TN extends ITransientNotification.Stub {
       ................
        final Handler mHandler;
        WindowManager mWM;
        TN(String packageName, @Nullable Looper looper) {
            .........
             if (looper == null) {
                // Use Looper.myLooper() if looper is not specified.
                looper = Looper.myLooper();
                if (looper == null) {
                    throw new RuntimeException(
                            ## 直接子線程中顯示toast會報這個錯誤
                            "Can't toast on a thread that has not called Looper.prepare()");
                }
            }
            mHandler = new Handler(looper, null) {
                @Override
                public void handleMessage(Message msg) {
                    switch (msg.what) {
                        case SHOW: {
                            IBinder token = (IBinder) msg.obj;
                            handleShow(token);
                            break;
                        }
                        case HIDE: {
                            handleHide();
                            // Don't do this in handleHide() because it is also invoked by
                            // handleShow()
                            mNextView = null;
                            break;
                        }
                        case CANCEL: {
                            handleHide();
                            // Don't do this in handleHide() because it is also invoked by
                            // handleShow()
                            mNextView = null;
                            try {
                                getService().cancelToast(mPackageName, TN.this);
                            } catch (RemoteException e) {
                            }
                            break;
                        }
                    }
                }
            };
        }

        public void handleShow(IBinder windowToken) {
            if (localLOGV) Log.v(TAG, "HANDLE SHOW: " + this + " mView=" + mView
                    + " mNextView=" + mNextView);
            // If a cancel/hide is pending - no need to show - at this point
            // the window token is already invalid and no need to do any work.
            if (mHandler.hasMessages(CANCEL) || mHandler.hasMessages(HIDE)) {
                return;
            }
            if (mView != mNextView) {
                // remove the old view if necessary
                handleHide();
                mView = mNextView;
                Context context = mView.getContext().getApplicationContext();
                String packageName = mView.getContext().getOpPackageName();
                if (context == null) {
                    context = mView.getContext();
                }
                mWM = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
                // We can resolve the Gravity here by using the Locale for getting
                // the layout direction
                final Configuration config = mView.getContext().getResources().getConfiguration();
                final int gravity = Gravity.getAbsoluteGravity(mGravity, config.getLayoutDirection());
                mParams.gravity = gravity;
                if ((gravity & Gravity.HORIZONTAL_GRAVITY_MASK) == Gravity.FILL_HORIZONTAL) {
                    mParams.horizontalWeight = 1.0f;
                }
                if ((gravity & Gravity.VERTICAL_GRAVITY_MASK) == Gravity.FILL_VERTICAL) {
                    mParams.verticalWeight = 1.0f;
                }
                mParams.x = mX;
                mParams.y = mY;
                mParams.verticalMargin = mVerticalMargin;
                mParams.horizontalMargin = mHorizontalMargin;
                mParams.packageName = packageName;
                mParams.hideTimeoutMilliseconds = mDuration ==
                    Toast.LENGTH_LONG ? LONG_DURATION_TIMEOUT : SHORT_DURATION_TIMEOUT;
                mParams.token = windowToken;
                if (mView.getParent() != null) {
                    if (localLOGV) Log.v(TAG, "REMOVE! " + mView + " in " + this);
                    mWM.removeView(mView);
                }
                if (localLOGV) Log.v(TAG, "ADD! " + mView + " in " + this);
                // Since the notification manager service cancels the token right
                // after it notifies us to cancel the toast there is an inherent
                // race and we may attempt to add a window after the token has been
                // invalidated. Let us hedge against that.
                try {
                    mWM.addView(mView, mParams);
                    trySendAccessibilityEvent();
                } catch (WindowManager.BadTokenException e) {
                    /* ignore */
                }
            }
        }
      ............
    }

怎么正確顯示toast呢

new Thread(new Runnable() {
        @Override
        public void run() {
             #子線程開啟
              Looper.prepare();
              Toast.makeText(MainActivity.this,"子線程吐司",Toast.LENGTH_LONG).show();
              Looper.loop();
         }
}).start();

三:Loop.looper()方法為什么不會導(dǎo)致ANR

安卓整體的運行是由事件驅(qū)動的GUI單線程模型,接收事件消息并處理泡孩,導(dǎo)致ANR的原因车摄,第一是事件未能得到處理,第二是已經(jīng)處理但是未能及時處理完成仑鸥。代碼里的體現(xiàn)就是當Loop.looper輪訓(xùn)不到事件的時候吮播,整個應(yīng)用就退出了,所以沒有輪訓(xùn)拿到事件應(yīng)用是不可能一直有序運行的眼俊。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末意狠,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子疮胖,更是在濱河造成了極大的恐慌环戈,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,080評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件澎灸,死亡現(xiàn)場離奇詭異院塞,居然都是意外死亡,警方通過查閱死者的電腦和手機性昭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,422評論 3 385
  • 文/潘曉璐 我一進店門拦止,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事汹族∠羟螅” “怎么了?”我有些...
    開封第一講書人閱讀 157,630評論 0 348
  • 文/不壞的土叔 我叫張陵顶瞒,是天一觀的道長夸政。 經(jīng)常有香客問我,道長搁拙,這世上最難降的妖魔是什么秒梳? 我笑而不...
    開封第一講書人閱讀 56,554評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮箕速,結(jié)果婚禮上酪碘,老公的妹妹穿的比我還像新娘。我一直安慰自己盐茎,他們只是感情好兴垦,可當我...
    茶點故事閱讀 65,662評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著字柠,像睡著了一般探越。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上窑业,一...
    開封第一講書人閱讀 49,856評論 1 290
  • 那天钦幔,我揣著相機與錄音,去河邊找鬼常柄。 笑死鲤氢,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的西潘。 我是一名探鬼主播卷玉,決...
    沈念sama閱讀 39,014評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼喷市!你這毒婦竟也來了相种?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,752評論 0 268
  • 序言:老撾萬榮一對情侶失蹤品姓,失蹤者是張志新(化名)和其女友劉穎寝并,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體腹备,經(jīng)...
    沈念sama閱讀 44,212評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡食茎,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,541評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了馏谨。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片别渔。...
    茶點故事閱讀 38,687評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出哎媚,到底是詐尸還是另有隱情喇伯,我是刑警寧澤,帶...
    沈念sama閱讀 34,347評論 4 331
  • 正文 年R本政府宣布拨与,位于F島的核電站稻据,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏买喧。R本人自食惡果不足惜捻悯,卻給世界環(huán)境...
    茶點故事閱讀 39,973評論 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望淤毛。 院中可真熱鬧今缚,春花似錦、人聲如沸低淡。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,777評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽蔗蹋。三九已至何荚,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間猪杭,已是汗流浹背餐塘。 一陣腳步聲響...
    開封第一講書人閱讀 32,006評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留皂吮,地道東北人戒傻。 一個月前我還...
    沈念sama閱讀 46,406評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像涮较,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子冈止,可洞房花燭夜當晚...
    茶點故事閱讀 43,576評論 2 349

推薦閱讀更多精彩內(nèi)容