AndroidサブスレッドはUIを更新できませんか?

7515 ワード

もしあなたがインターネットでCalledFromWrongThreadException:Only the original thread that created a view hierarchy can touch its viewsを検索したら.android里子スレッドがUIをリフレッシュできないという文章がたくさん見られるに違いありません.この言葉は言い間違えてはいけないが,少し厳密ではない.スレッドがUIをリフレッシュできるかどうかの鍵は、ViewRootがそのスレッドに属しているかどうかにある.
コードを見てみましょう.
まず、CalledFromWrongThreadExceptionという異常は、次のコードから放出されます.
void checkThread() {

        if (mThread != Thread.currentThread()) {

            throw new CalledFromWrongThreadException(

                    "Only the original thread that created a view hierarchy can touch its views.");

        }

}

このセグメントコードはframework/base/core/java/android/view/View.JAva次に、RootViewの構造関数を見てみましょう.
public ViewRoot(Context context) {

    super();



    if (MEASURE_LATENCY && lt == null) {

        lt = new LatencyTimer(100, 1000);

    }



    // For debug only

    //++sInstanceCount;



    // Initialize the statics when this class is first instantiated. This is

    // done here instead of in the static block because Zygote does not

    // allow the spawning of threads.

    getWindowSession(context.getMainLooper());

    

    mThread = Thread.currentThread();

    mLocation = new WindowLeaked(null);

    mLocation.fillInStackTrace();

    mWidth = -1;

    mHeight = -1;

    mDirty = new Rect();

    mTempRect = new Rect();

    mVisRect = new Rect();

    mWinFrame = new Rect();

    mWindow = new W(this, context);

    mInputMethodCallback = new InputMethodCallback(this);

    mViewVisibility = View.GONE;

    mTransparentRegion = new Region();

    mPreviousTransparentRegion = new Region();

    mFirst = true; // true for the first time the view is added

    mAdded = false;

    mAttachInfo = new View.AttachInfo(sWindowSession, mWindow, this, this);

    mViewConfiguration = ViewConfiguration.get(context);

    mDensity = context.getResources().getDisplayMetrics().densityDpi;

}
最後に、View Rootを見てみましょう.checkThreadの呼び出し順序:
com.david.test.helloworld.MainActivity$TestThread2.run
    -> android.widget.TextView.setText
        -> android.widget.TextView.checkForRelayout
            -> android.view.View.invalidate
                -> android.view.ViewGroup.invalidateChild
                    -> android.view.ViewRoot.invalidateChildInParent
                        -> android.view.ViewRoot.invalidateChild
                            -> android.view.ViewRoot.checkThread
ここまで来て、CalledFromWrongThreadExceptionがなぜ現れたのか、ネットユーザーはすでに知っていると信じています.では、メインスレッド以外のスレッドがUIをリフレッシュできるのでしょうか.ほほほ、答えはもちろんできます.前提条件は自分のView Rootを持つことです.ViewRootのインスタンスを直接作成すると、このクラスが見つからないことに失望します.では、私たちはどうすればいいのでしょうか.例では、
class TestThread1 extends Thread{

              @Override

              public void run() {

                     Looper.prepare();

                     

                     TextView tx = new TextView(MainActivity.this);

                     tx.setText("test11111111111111111");

                            

                     WindowManager wm = MainActivity.this.getWindowManager();

                  WindowManager.LayoutParams params = new WindowManager.LayoutParams(

250, 250, 200, 200, WindowManager.LayoutParams.FIRST_SUB_WINDOW,

                               WindowManager.LayoutParams.TYPE_TOAST,PixelFormat.OPAQUE);
                     
                     wm.addView(tx, params); 
                   
                     Looper.loop();

              }

    }
MainActivityはandroidエンジニアリングの構築時に生成されるエントリクラスであり、TestThread 1はMainActivityの内部クラスである.興味があれば、やってみましょう.画面に「test 11111111111111」が表示されているかどうか見てみましょう.最後に、そこにViewRootが作成されたと言います.ここ:wm.addView(tx, params).具体的な流れを見てみましょうaddView(View view, ViewGroup.LayoutParams params)   -> WindowManagerImpl.addView(Viewview,ViewGroup.LayoutParams params,boolean nest)、奥義はここにあります.具体的にコードを見てみましょう.
private void addView(View view, ViewGroup.LayoutParams params, boolean nest)

    {

        if (Config.LOGV) Log.v("WindowManager", "addView view=" + view);

 

        if (!(params instanceof WindowManager.LayoutParams)) {

            throw new IllegalArgumentException(

                    "Params must be WindowManager.LayoutParams");

        }

 

        final WindowManager.LayoutParams wparams

                = (WindowManager.LayoutParams)params;

        

        ViewRoot root;

        View panelParentView = null;

        

        synchronized (this) {

            // Here's an odd/questionable case: if someone tries to add a

            // view multiple times, then we simply bump up a nesting count

            // and they need to remove the view the corresponding number of

            // times to have it actually removed from the window manager.

            // This is useful specifically for the notification manager,

            // which can continually add/remove the same view as a

            // notification gets updated.

            int index = findViewLocked(view, false);

            if (index >= 0) {

                if (!nest) {

                    throw new IllegalStateException("View " + view

                            + " has already been added to the window manager.");

                }

                root = mRoots[index];

                root.mAddNesting++;

                // Update layout parameters.

                view.setLayoutParams(wparams);

                root.setLayoutParams(wparams, true);

                return;

            }

            

            // If this is a panel window, then find the window it is being

            // attached to for future reference.

            if (wparams.type >= WindowManager.LayoutParams.FIRST_SUB_WINDOW &&

                    wparams.type <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {

                final int count = mViews != null ? mViews.length : 0;

                for (int i=0; i<count; i++) {

                    if (mRoots[i].mWindow.asBinder() == wparams.token) {

                        panelParentView = mViews[i];

                    }

                }

            }

            

            root = new ViewRoot(view.getContext());

            root.mAddNesting = 1;

 

            view.setLayoutParams(wparams);

            

            if (mViews == null) {

                index = 1;

                mViews = new View[1];

                mRoots = new ViewRoot[1];

                mParams = new WindowManager.LayoutParams[1];

            } else {

                index = mViews.length + 1;

                Object[] old = mViews;

                mViews = new View[index];

                System.arraycopy(old, 0, mViews, 0, index-1);

                old = mRoots;

                mRoots = new ViewRoot[index];

                System.arraycopy(old, 0, mRoots, 0, index-1);

                old = mParams;

                mParams = new WindowManager.LayoutParams[index];

                System.arraycopy(old, 0, mParams, 0, index-1);

            }

            index--;

 

            mViews[index] = view;

            mRoots[index] = root;

            mParams[index] = wparams;

        }

        // do this last because it fires off messages to start doing things

        root.setView(view, wparams, panelParentView);

}
:frameworks/base/core/java/android/view/WindowManagerImpl.JAva Ok、ここまで信じて、みんなはすでに理解しました:サブスレッドはUIをリフレッシュすることができます!!!