Android 由setContentView探究Activity界面加載流程及Activity、Window和DecorView的關(guān)系

前言

當(dāng)我們打開一個(gè)activity需要顯示內(nèi)容的時(shí)候,只需要在onCreate方法中執(zhí)行setContentView方法,一行代碼搞定,很簡(jiǎn)單,有么有。但是,有沒有想過setConentView方法內(nèi)部,執(zhí)行了那些操作,Window、DecorView、ViewRootImpl是怎么回事,本文就來一步步分析其內(nèi)部工作流程。源碼基于Android API 21。

Activity#setContentView

    public void setContentView(int layoutResID) {
        getWindow().setContentView(layoutResID);
        initWindowDecorActionBar();
    }

    ...

    public Window getWindow() {
        return mWindow;
    }

可以看到,Activity#setContentView內(nèi)部調(diào)用了mWindow中的setContentView方法,那這個(gè)mWindow是什么呢?可以看出它是Window類型的。先來看看mWindow是在哪里創(chuàng)建的,通過源碼可以發(fā)現(xiàn)在Activity#attach中對(duì)其進(jìn)行了賦值操作(注:在Activity啟動(dòng)過程中,會(huì)執(zhí)行ActivityThread#performLaunchActivity方法,在這個(gè)方法中會(huì)調(diào)用Activity#attach方法)。

    final void attach(Context context, ActivityThread aThread,
            Instrumentation instr, IBinder token, int ident,
            Application application, Intent intent, ActivityInfo info,
            CharSequence title, Activity parent, String id,
            NonConfigurationInstances lastNonConfigurationInstances,
            Configuration config, IVoiceInteractor voiceInteractor) {

        ...
        //在這里創(chuàng)建Activity所屬的Window對(duì)象并賦值給mWindow
        mWindow = PolicyManager.makeNewWindow(this);
        mWindow.setCallback(this);//Activity實(shí)現(xiàn)了Window的Callback接口,這里給Window注冊(cè)監(jiān)聽
        mWindow.setOnWindowDismissedCallback(this);
        mWindow.getLayoutInflater().setPrivateFactory(this);
        if (info.softInputMode != WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED) {
            mWindow.setSoftInputMode(info.softInputMode);
        }
        if (info.uiOptions != 0) {
            mWindow.setUiOptions(info.uiOptions);
        }
        ...

創(chuàng)建Window并初始化DecorView

接著上文看下PolicyManager#makeNewWindow

    public static Window makeNewWindow(Context context) {
        // this will likely crash somewhere beyond so we log it.
        Bridge.getLog().error(LayoutLog.TAG_UNSUPPORTED,
                "Call to PolicyManager.makeNewWindow is not supported", null);
        return null;
    }

發(fā)現(xiàn)PolicyManager#makeNewWindow方法并沒有具體實(shí)現(xiàn),并且PolicyManager中的方法全在接口IPolicy中聲明了。

public interface IPolicy {
    public Window makeNewWindow(Context context);

    public LayoutInflater makeNewLayoutInflater(Context context);

    public WindowManagerPolicy makeNewWindowManager();

    public FallbackEventHandler makeNewFallbackEventHandler(Context context);
}

其真正的實(shí)現(xiàn)是在Policy類中,如下:

    public Window makeNewWindow(Context context) {
        return new PhoneWindow(context);
    }

可以看到,最終是實(shí)例化了PhoneWindow,PhoneWindow是Window的唯一子類。
至此,Window的創(chuàng)建過程就結(jié)束了,接著看PhoneWindow#setContentView方法。

    @Override
    public void setContentView(int layoutResID) {
        // Note: FEATURE_CONTENT_TRANSITIONS may be set in the process of installing the window
        // decor, when theme attributes and the like are crystalized. Do not check the feature
        // before this happens.

        //重點(diǎn)在這里,mContentParent為null,執(zhí)行installDecor方法。
        if (mContentParent == null) {
            installDecor();//初始化DecorView
        } else if (!hasFeature(FEATURE_CONTENT_TRANSITIONS)) {
            mContentParent.removeAllViews();
        }

        if (hasFeature(FEATURE_CONTENT_TRANSITIONS)) {
            final Scene newScene = Scene.getSceneForLayout(mContentParent, layoutResID,
                    getContext());
            transitionTo(newScene);
        } else {
            //這個(gè)方法內(nèi)部會(huì)把我們的布局文件的內(nèi)容添加mContentParent中。
            mLayoutInflater.inflate(layoutResID, mContentParent);
        }
        final Callback cb = getCallback();
        if (cb != null && !isDestroyed()) {
            cb.onContentChanged();//執(zhí)行回調(diào)
        }
    }

這個(gè)方法中主要兩個(gè)工作:1. 如果mContentParent為null,則執(zhí)行installDecor方法,即初始化DecorView;2. 通過mLayoutInflater.inflate(layoutResID, mContentParent將我們的布局內(nèi)部添加到mContentParent;3. 當(dāng)屏幕的內(nèi)容發(fā)生改變時(shí),執(zhí)行回調(diào)方法onContentChanged。那么這個(gè)mContentParent是指什么呢?這里先保留疑問,我們接下來就會(huì)解釋。來看下installDecor方法做了什么工作。

private void installDecor() {
        //如果DecorView為null,則創(chuàng)建DecorView
        if (mDecor == null) {
            mDecor = generateDecor();
            mDecor.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
            mDecor.setIsRootNamespace(true);
            if (!mInvalidatePanelMenuPosted && mInvalidatePanelMenuFeatures != 0) {
                mDecor.postOnAnimation(mInvalidatePanelMenuRunnable);
            }
        }

        ...

        if (mContentParent == null) {
            初始化DecorView的布局結(jié)構(gòu),獲取mContentParent并返回。
            mContentParent = generateLayout(mDecor);
            ...
        } 

        ...

    }
    protected DecorView generateDecor() {
        return new DecorView(getContext(), -1);
    }
protected ViewGroup generateLayout(DecorView decor) {
        // Apply data from current theme.
      
        TypedArray a = getWindowStyle();
        ...
        //獲取一堆主題中設(shè)置的屬性進(jìn)行相關(guān)設(shè)置(好長(zhǎng)一堆~~)
        if (a.getBoolean(R.styleable.Window_windowNoTitle, false)) {
            requestFeature(FEATURE_NO_TITLE);
        } else if (a.getBoolean(R.styleable.Window_windowActionBar, false)) {
            // Don't allow an action bar if there is no title.
            requestFeature(FEATURE_ACTION_BAR);
        }

        if (...) {
            ...
        }
        ...
     
        // Inflate the window decor.
        //根據(jù)不同的窗口特征,layoutResource對(duì)應(yīng)不同的布局文件,用來填充DecorView(又是很長(zhǎng)一堆~~)。
        int layoutResource;
        int features = getLocalFeatures();
        // System.out.println("Features: 0x" + Integer.toHexString(features));
        if ((features & (1 << FEATURE_SWIPE_TO_DISMISS)) != 0) {
            layoutResource = R.layout.screen_swipe_dismiss;
        } else if ((features & ((1 << FEATURE_LEFT_ICON) | (1 << FEATURE_RIGHT_ICON))) != 0) {
            if (mIsFloating) {
                TypedValue res = new TypedValue();
                getContext().getTheme().resolveAttribute(
                        R.attr.dialogTitleIconsDecorLayout, res, true);
                layoutResource = res.resourceId;
            } else {
                layoutResource = R.layout.screen_title_icons;
            }
            // XXX Remove this once action bar supports these features.
            removeFeature(FEATURE_ACTION_BAR);
            // System.out.println("Title Icons!");
        } 
        
        ...
        
        //重點(diǎn)在這里
        //把對(duì)應(yīng)的布局文件填充并加載到DecorView,初始化DecorView的結(jié)構(gòu)
        View in = mLayoutInflater.inflate(layoutResource, null);
        decor.addView(in, new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT));
        mContentRoot = (ViewGroup) in;
        //看到contentParent了吧,它對(duì)應(yīng)了DecorView中id為com.android.internal.R.id.content的ViewGroup。
        ViewGroup contentParent = (ViewGroup)findViewById(ID_ANDROID_CONTENT);
        if (contentParent == null) {
            throw new RuntimeException("Window couldn't find content container view");
        }
        ...

        return contentParent;
    }

這個(gè)主要做了三件事:1.根據(jù)主題中屬性進(jìn)行一些相關(guān)設(shè)置2.根據(jù)不同的窗口特征,獲取對(duì)應(yīng)的布局文件,用來初始化DecorView的布局結(jié)構(gòu)。3.獲取contentParent,contentParent對(duì)應(yīng)了DecorView布局文件中id為com.android.internal.R.id.content的ViewGroup,它其實(shí)是一個(gè)FrameLayout。如圖所示:

DecorView結(jié)構(gòu)圖.png

再回到上文PhoneWindow#setContentView方法中,當(dāng)獲取到mContentParent后,還會(huì)執(zhí)行mLayoutInflater.inflate(layoutResID, mContentParent)將我們寫的xml布局文件加載到mContentParent,至于加載細(xì)節(jié)我們這里就不做分析了。

小結(jié):至此,我們已經(jīng)實(shí)例化了Window,初始化了DecorView布局結(jié)構(gòu),并且把我們布局文件加載到了mContentParent中。不過DecorView并沒有顯示出來,因?yàn)閂iew并不能單獨(dú)存在,必須依附于Window。

在Activity在啟動(dòng)流程中(Activity的啟動(dòng)流程很復(fù)雜,我們這里不做具體分析),當(dāng)執(zhí)行了ActivityThread#performLaunchActivity方法后還會(huì)執(zhí)行ActivityThread#handleResumeActivity方法,在這個(gè)方法中首先會(huì)調(diào)用Activity的onResume方法,接著調(diào)用Activity的makeVisible方法。

    void makeVisible() {
        if (!mWindowAdded) {
            ViewManager wm = getWindowManager();//獲取WindowManager
            wm.addView(mDecor, getWindow().getAttributes());//通過WindowManager完成Window的添加過程
            mWindowAdded = true;
        }
        mDecor.setVisibility(View.VISIBLE);//讓DecorView可見
    }

此方法將完成Window的添加過程,以及讓DecorView顯示出來,至此Activity界面加載流程就結(jié)束了

將DecorView添加到Window

接著上文,看看DecorView是如何添加到Window中的。Window其實(shí)是個(gè)抽象的概念,它并不是一個(gè)實(shí)體。我們可以把Window理解成一種抽象的功能集合,每個(gè)Window都關(guān)聯(lián)一個(gè)View和ViewRootImpl。

public interface ViewManager
{   
    public void addView(View view, ViewGroup.LayoutParams params);
    public void updateViewLayout(View view, ViewGroup.LayoutParams params);
    public void removeView(View view);
}

發(fā)現(xiàn)ViewManager是一個(gè)接口,WindowManager繼承了ViewManager,也是一個(gè)接口。看它的實(shí)現(xiàn)類WindowManagerImpl中的addView方法。

    @Override
    public void addView(View view, ViewGroup.LayoutParams params) {
        mGlobal.addView(view, params, mDisplay, mParentWindow);
    }

發(fā)現(xiàn)WindowManagerImpl#addView并沒有實(shí)現(xiàn)具體細(xì)節(jié),而是交給了WindowManagerGlobal中的addView去處理。

public void addView(View view, ViewGroup.LayoutParams params,
            Display display, Window parentWindow) {
        ...

        ViewRootImpl root;

        synchronized (mLock) {
            ...
            //實(shí)例化ViewRootImpl,它是WindowManager和DecorView的紐帶
            root = new ViewRootImpl(view.getContext(), display);

            view.setLayoutParams(wparams);

            mViews.add(view);//保存所有Window對(duì)應(yīng)的View
            mRoots.add(root);//保存所有Window對(duì)應(yīng)的ViewRootImpl
            mParams.add(wparams);//保存所有Window對(duì)應(yīng)的布局參數(shù)
        }

        // do this last because it fires off messages to start doing things
        try {
            //重點(diǎn)是這個(gè)方法 開始出發(fā)消息做事情
            root.setView(view, wparams, panelParentView);
        } catch (RuntimeException e) {
            // BadTokenException or InvalidDisplayException, clean up.
            synchronized (mLock) {
                final int index = findViewLocked(view, false);
                if (index >= 0) {
                    removeViewLocked(index, true);
                }
            }
            throw e;
        }
    }

我們接著來看ViewRootImpl#setView方法

/**
     * We have one child
     */
    public void setView(View view, WindowManager.LayoutParams attrs, View panelParentView) {
        synchronized (this) {
            if (mView == null) {
                mView = view;
                ...//省略一大波代碼
                // Schedule the first layout -before- adding to the window
                // manager, to make sure we do the relayout before receiving
                // any other events from the system.
                //內(nèi)部最終會(huì)調(diào)用performTraversals方法開啟View的繪制流程。
                requestLayout();
                if ((mWindowAttributes.inputFeatures
                        & WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL) == 0) {
                    mInputChannel = new InputChannel();
                }
                try {
                    mOrigWindowType = mWindowAttributes.type;
                    mAttachInfo.mRecomputeGlobalAttributes = true;
                    collectViewAttributes();
                    //通過IWindowSession來完成Window的添加過程
                    res = mWindowSession.addToDisplay(mWindow, mSeq, mWindowAttributes,
                            getHostVisibility(), mDisplay.getDisplayId(),
                            mAttachInfo.mContentInsets, mInputChannel);
                } catch (RemoteException e) {
                    mAdded = false;
                    mView = null;
                    mAttachInfo.mRootView = null;
                    mInputChannel = null;
                    mFallbackEventHandler.setView(null);
                    unscheduleTraversals();
                    setAccessibilityFocus(null, null);
                    throw new RuntimeException("Adding window failed", e);
                } finally {
                    if (restore) {
                        attrs.restore();
                    }
                }
                ...//省略一大波代碼
         }

這個(gè)方法很長(zhǎng),我們只看與本文主流程相關(guān)部分。有兩個(gè)重要的地方。

  1. 通過requestLayout方法開啟頂級(jí)View的測(cè)繪。
    @Override
    public void requestLayout() {
        if (!mHandlingLayoutInLayoutRequest) {
            checkThread();
            mLayoutRequested = true;
            scheduleTraversals();
        }
    }
    void scheduleTraversals() {
        if (!mTraversalScheduled) {
            mTraversalScheduled = true;
            mTraversalBarrier = mHandler.getLooper().postSyncBarrier();
            mChoreographer.postCallback(
                    Choreographer.CALLBACK_TRAVERSAL, mTraversalRunnable, null);
            if (!mUnbufferedInputDispatch) {
                scheduleConsumeBatchedInput();
            }
            notifyRendererOfFramePending();
        }
    }

    final class TraversalRunnable implements Runnable {
        @Override
        public void run() {
            doTraversal();
        }
    }
    final TraversalRunnable mTraversalRunnable = new TraversalRunnable();
    void doTraversal() {
        if (mTraversalScheduled) {
            mTraversalScheduled = false;
            mHandler.getLooper().removeSyncBarrier(mTraversalBarrier);

            if (mProfile) {
                Debug.startMethodTracing("ViewAncestor");
            }

            Trace.traceBegin(Trace.TRACE_TAG_VIEW, "performTraversals");
            try {
                performTraversals();
            } finally {
                Trace.traceEnd(Trace.TRACE_TAG_VIEW);
            }

            if (mProfile) {
                Debug.stopMethodTracing();
                mProfile = false;
            }
        }
    }
    private void performTraversals() {
            ...
            //執(zhí)行測(cè)量
            performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
            ...
            //執(zhí)行布局
            performLayout(lp, desiredWindowWidth, desiredWindowHeight);
            ...
            //執(zhí)行繪制
            performDraw();
    }

performTraversals方法依次會(huì)執(zhí)行performMeasureperformLayout以及performDraw來完成對(duì)頂級(jí)View的測(cè)量、布局、繪制。performMeasure方法中會(huì)調(diào)用measure方法,measure方法中又會(huì)調(diào)用onMeasure方法,在onMeasure方法中會(huì)完成子View的measure過程,measure過程就從父View傳到了子View。子View又會(huì)重復(fù)父View的動(dòng)作,如此反復(fù),就完成了整個(gè)View樹的測(cè)量過程。performLayout以及performDraw方法與performMeasure類似。可以說View的三大工作流程是performTraversals開始的

  1. 通過WindowSession完成window的添加過程。

先來看下mWindowSession的創(chuàng)建過程

   public ViewRootImpl(Context context, Display display) {
        mWindowSession = WindowManagerGlobal.getWindowSession();//獲取WindowSession
   }
public static IWindowSession getWindowSession() {
        synchronized (WindowManagerGlobal.class) {
            if (sWindowSession == null) {
                try {
                    InputMethodManager imm = InputMethodManager.getInstance();
                    IWindowManager windowManager = getWindowManagerService();
                    sWindowSession = windowManager.openSession(
                            new IWindowSessionCallback.Stub() {
                                @Override
                                public void onAnimatorScaleChanged(float scale) {
                                    ValueAnimator.setDurationScale(scale);
                                }
                            },
                            imm.getClient(), imm.getInputContext());
                    ValueAnimator.setDurationScale(windowManager.getCurrentAnimatorScale());
                } catch (RemoteException e) {
                    Log.e(TAG, "Failed to open window session", e);
                }
            }
            return sWindowSession;
        }
    }

    public static IWindowManager getWindowManagerService() {
        synchronized (WindowManagerGlobal.class) {
            if (sWindowManagerService == null) {
                sWindowManagerService = IWindowManager.Stub.asInterface(
                        ServiceManager.getService("window"));
            }
            return sWindowManagerService;
        }
    }

mWindowSession類型是IWindowManager,它是一個(gè)Binder對(duì)象,可見Window的添加過程是個(gè)IPC過程。

openSession方法是在WindowManagerService具體實(shí)現(xiàn)的

    public IWindowSession openSession(IWindowSessionCallback callback, IInputMethodClient client,
            IInputContext inputContext) {
        if (client == null) throw new IllegalArgumentException("null client");
        if (inputContext == null) throw new IllegalArgumentException("null inputContext");
        Session session = new Session(this, callback, client, inputContext);
        return session;
    }

在WindowManagerService#openSession實(shí)例化了Session并返回。Session是IWindowSession的實(shí)現(xiàn)類。addToDisplay方法也是在Session中具體實(shí)現(xiàn)的。

    @Override
    public int addToDisplay(IWindow window, int seq, WindowManager.LayoutParams attrs,
            int viewVisibility, int displayId, Rect outContentInsets,
            InputChannel outInputChannel) {
        return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId,
                outContentInsets, outInputChannel);
    }

在這個(gè)方法內(nèi)部又調(diào)用了WindowManagerService#addWindow方法,最終完成了Window的添加過程。其具體細(xì)節(jié)不再說了。。。

希望能對(duì)您有所幫助,若文中有錯(cuò)誤或表述不當(dāng)?shù)牡胤竭€望指出,互相交流,共同成長(zhǎng)!

相關(guān)文章:
Android View 測(cè)量流程(Measure)源碼解析
Android View 布局流程(Layout)源碼解析
Android View 繪制流程(Draw)源碼解析

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 230,825評(píng)論 6 546
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 99,814評(píng)論 3 429
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 178,980評(píng)論 0 384
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我,道長(zhǎng),這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 64,064評(píng)論 1 319
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 72,779評(píng)論 6 414
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 56,109評(píng)論 1 330
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 44,099評(píng)論 3 450
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 43,287評(píng)論 0 291
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 49,799評(píng)論 1 338
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 41,515評(píng)論 3 361
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 43,750評(píng)論 1 375
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 39,221評(píng)論 5 365
  • 正文 年R本政府宣布,位于F島的核電站,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 44,933評(píng)論 3 351
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 35,327評(píng)論 0 28
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 36,667評(píng)論 1 296
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 52,492評(píng)論 3 400
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 48,703評(píng)論 2 380

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