手把手教你读懂源码,View的加载流程详细剖析

来源:互联网 发布:网络棋牌充值漏洞 编辑:程序博客网 时间:2024/05/01 17:58

最近闲的没事,就想要理清我们的View是如何加载到界面中的,那最好的方式就是分析源代码了,这里一同分享给有需要的朋友们。内容略多,请斟酌查看学习。

我们都知道,在开发Android应用程序时,经常会在Activity的onCreate方法里调用setContentView方法,将布局文件或者View对象传入,但是很多人并没有去分析后续是如何加载到面并显示出来的,接下来就顺藤摸瓜将其摘下来,查看的是Android 7.1源码。

1、从setContentView 方法开始摸索

就简单从HelloWorld工程的onCreate方法开始吧:

public class MainActivity extends Activity {    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);    }}

查看其父类Activity的setContentView方法,代码如下:

    /**     * Set the activity content from a layout resource.  The resource will be     * inflated, adding all top-level views to the activity.     *     * @param layoutResID Resource ID to be inflated.     *     * @see #setContentView(android.view.View)     * @see #setContentView(android.view.View, android.view.ViewGroup.LayoutParams)     */    public void setContentView(@LayoutRes int layoutResID) {        getWindow().setContentView(layoutResID);        initWindowDecorActionBar();    }

可以看出这里先得到一个 Window 对象,然后调用 Window 对象的setContentView方法。

这样分析Activity中的 setContentView 方法可以看到,界面绘制并不是由 Activity 完成的,是调用了 Window 类的 setContentView 来实现的。

所以我们继续查看 Window 类的代码:

    /**     * Convenience for     * {@link #setContentView(View, android.view.ViewGroup.LayoutParams)}     * to set the screen content from a layout resource.  The resource will be     * inflated, adding all top-level views to the screen.     *     * @param layoutResID Resource ID to be inflated.     * @see #setContentView(View, android.view.ViewGroup.LayoutParams)     */    public abstract void setContentView(@LayoutRes int layoutResID);    /**     * Convenience for     * {@link #setContentView(View, android.view.ViewGroup.LayoutParams)}     * set the screen content to an explicit view.  This view is placed     * directly into the screen's view hierarchy.  It can itself be a complex     * view hierarhcy.     *     * @param view The desired content to display.     * @see #setContentView(View, android.view.ViewGroup.LayoutParams)     */    public abstract void setContentView(View view);

发现Window 类其实是一个抽象类,且 setContentView 是一个抽象方法。所以其具体实现是由 Window类的实现类来完成的(后面我们会知道该实现类是PhoneWindow)。

2、分析Window类的实现类

为了找出Window类的具体实现类,回到Activity的setContentView方法,然后进入getWindow方法:

    /**     * Retrieve the current {@link android.view.Window} for the activity.     * This can be used to directly access parts of the Window API that     * are not available through Activity/Screen.     *     * @return Window The current window, or null if the activity is not     *         visual.     */    public Window getWindow() {        return mWindow;    }

getWindow 方法很简单,只是返回一个Window对象,那么Window对象到底是在哪儿实例化的呢?接着我们继续寻找Window对象的实例化代码,最终确认在Activity类的attach方法(attach的调用后续再分析),查看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, String referrer, IVoiceInteractor voiceInteractor,            Window window) {        attachBaseContext(context);        mFragments.attachHost(null /*parent*/);        mWindow = new PhoneWindow(this, window);    // 实例化PhoneWindow对象        mWindow.setWindowControllerCallback(this);        mWindow.setCallback(this);        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);        }        mUiThread = Thread.currentThread();        mMainThread = aThread;        mInstrumentation = instr;        mToken = token;        mIdent = ident;        mApplication = application;        mIntent = intent;        mReferrer = referrer;        mComponent = intent.getComponent();        mActivityInfo = info;        mTitle = title;        mParent = parent;        mEmbeddedID = id;        mLastNonConfigurationInstances = lastNonConfigurationInstances;        if (voiceInteractor != null) {            if (lastNonConfigurationInstances != null) {                mVoiceInteractor = lastNonConfigurationInstances.voiceInteractor;            } else {                mVoiceInteractor = new VoiceInteractor(voiceInteractor, this, this,                        Looper.myLooper());            }        }        mWindow.setWindowManager(                (WindowManager)context.getSystemService(Context.WINDOW_SERVICE),                mToken, mComponent.flattenToString(),                (info.flags & ActivityInfo.FLAG_HARDWARE_ACCELERATED) != 0);        if (mParent != null) {            mWindow.setContainer(mParent.getWindow());        }        mWindowManager = mWindow.getWindowManager();        mCurrentConfig = config;    }

由此可见上面的Window对象就是PhoneWindow对象,所以我们从Activity的setContentView方法定位到了PhoneWindow的setContentView方法。

PhoneWindow的构造方法非常简单,就是获取了LayoutInflater对象,为了后续加载xml布局只有文件:

    public PhoneWindow(Context context) {        super(context);        mLayoutInflater = LayoutInflater.from(context);   // 实例化LayoutInflater对象    }    /**     * Constructor for main window of an activity.     */    public PhoneWindow(Context context, Window preservedWindow) {        this(context);        // Only main activity windows use decor context, all the other windows depend on whatever        // context that was given to them.        mUseDecorContext = true;        if (preservedWindow != null) {            mDecor = (DecorView) preservedWindow.getDecorView();            mElevation = preservedWindow.getElevation();            mLoadElevation = false;            mForceDecorInstall = true;            // If we're preserving window, carry over the app token from the preserved            // window, as we'll be skipping the addView in handleResumeActivity(), and            // the token will not be updated as for a new window.            getAttributes().token = preservedWindow.getAttributes().token;        }        // Even though the device doesn't support picture-in-picture mode,        // an user can force using it through developer options.        boolean forceResizable = Settings.Global.getInt(context.getContentResolver(),                DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES, 0) != 0;        mSupportsPictureInPicture = forceResizable || context.getPackageManager().hasSystemFeature(                PackageManager.FEATURE_PICTURE_IN_PICTURE);    }

3、继续分析PhoneWindow类的setContentView方法

继续进入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.        if (mContentParent == null) {    // 如果父容器为空则初始化父容器            installDecor();        } else if (!hasFeature(FEATURE_CONTENT_TRANSITIONS)) {   // 否则移除所有子视图            mContentParent.removeAllViews();        }        if (hasFeature(FEATURE_CONTENT_TRANSITIONS)) {            final Scene newScene = Scene.getSceneForLayout(mContentParent, layoutResID,                    getContext());            transitionTo(newScene);        } else {            mLayoutInflater.inflate(layoutResID, mContentParent);   // 调用LayoutInflater类的inflate方法将xml布局文件加载到父容器        }        mContentParent.requestApplyInsets();        final Callback cb = getCallback();        if (cb != null && !isDestroyed()) {            cb.onContentChanged();   // 回调Callback通知ContentView发生改变,其中的Callback可能由Activity实现        }        mContentParentExplicitlySet = true;    }

从源码可以知道,这里主要包括三个步骤:

  1. 如果父容器为空则初始化父容器,否则移除所有子视图;

  2. 调用LayoutInflater类的inflate方法将xml布局文件加载到父容器;

  3. 回调Callback通知ContentView发生改变,其中的Callback可能由Activity实现。

后面两步比较简单,这里主要来看第一步的父容器初始化流程,进入PhoneWindow类的installDecor方法:

    private void installDecor() {        mForceDecorInstall = false;        if (mDecor == null) {            mDecor = generateDecor(-1);   // 生成mDecor             mDecor.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);            mDecor.setIsRootNamespace(true);            if (!mInvalidatePanelMenuPosted && mInvalidatePanelMenuFeatures != 0) {                mDecor.postOnAnimation(mInvalidatePanelMenuRunnable);            }        } else {            mDecor.setWindow(this);        }        if (mContentParent == null) {            mContentParent = generateLayout(mDecor);   // 生成mContentParent             // Set up decor part of UI to ignore fitsSystemWindows if appropriate.            mDecor.makeOptionalFitsSystemWindows();            final DecorContentParent decorContentParent = (DecorContentParent) mDecor.findViewById(                    R.id.decor_content_parent);            if (decorContentParent != null) {                mDecorContentParent = decorContentParent;                mDecorContentParent.setWindowCallback(getCallback());                if (mDecorContentParent.getTitle() == null) {                    mDecorContentParent.setWindowTitle(mTitle);                }                final int localFeatures = getLocalFeatures();                for (int i = 0; i < FEATURE_MAX; i++) {                    if ((localFeatures & (1 << i)) != 0) {                        mDecorContentParent.initFeature(i);                    }                }                mDecorContentParent.setUiOptions(mUiOptions);                if ((mResourcesSetFlags & FLAG_RESOURCE_SET_ICON) != 0 ||                        (mIconRes != 0 && !mDecorContentParent.hasIcon())) {                    mDecorContentParent.setIcon(mIconRes);                } else if ((mResourcesSetFlags & FLAG_RESOURCE_SET_ICON) == 0 &&                        mIconRes == 0 && !mDecorContentParent.hasIcon()) {                    mDecorContentParent.setIcon(                            getContext().getPackageManager().getDefaultActivityIcon());                    mResourcesSetFlags |= FLAG_RESOURCE_SET_ICON_FALLBACK;                }                if ((mResourcesSetFlags & FLAG_RESOURCE_SET_LOGO) != 0 ||                        (mLogoRes != 0 && !mDecorContentParent.hasLogo())) {                    mDecorContentParent.setLogo(mLogoRes);                }                // Invalidate if the panel menu hasn't been created before this.                // Panel menu invalidation is deferred avoiding application onCreateOptionsMenu                // being called in the middle of onCreate or similar.                // A pending invalidation will typically be resolved before the posted message                // would run normally in order to satisfy instance state restoration.                PanelFeatureState st = getPanelState(FEATURE_OPTIONS_PANEL, false);                if (!isDestroyed() && (st == null || st.menu == null) && !mIsStartingWindow) {                    invalidatePanelMenu(FEATURE_ACTION_BAR);                }            } else {                mTitleView = (TextView) findViewById(R.id.title);                if (mTitleView != null) {                    if ((getLocalFeatures() & (1 << FEATURE_NO_TITLE)) != 0) {                        final View titleContainer = findViewById(R.id.title_container);                        if (titleContainer != null) {                            titleContainer.setVisibility(View.GONE);                        } else {                            mTitleView.setVisibility(View.GONE);                        }                        mContentParent.setForeground(null);                    } else {                        mTitleView.setText(mTitle);                    }                }            }            if (mDecor.getBackground() == null && mBackgroundFallbackResource != 0) {                mDecor.setBackgroundFallback(mBackgroundFallbackResource);            }            // Only inflate or create a new TransitionManager if the caller hasn't            // already set a custom one.            if (hasFeature(FEATURE_ACTIVITY_TRANSITIONS)) {                if (mTransitionManager == null) {                    final int transitionRes = getWindowStyle().getResourceId(                            R.styleable.Window_windowContentTransitionManager,                            0);                    if (transitionRes != 0) {                        final TransitionInflater inflater = TransitionInflater.from(getContext());                        mTransitionManager = inflater.inflateTransitionManager(transitionRes,                                mContentParent);                    } else {                        mTransitionManager = new TransitionManager();                    }                }                mEnterTransition = getTransition(mEnterTransition, null,                        R.styleable.Window_windowEnterTransition);                mReturnTransition = getTransition(mReturnTransition, USE_DEFAULT_TRANSITION,                        R.styleable.Window_windowReturnTransition);                mExitTransition = getTransition(mExitTransition, null,                        R.styleable.Window_windowExitTransition);                mReenterTransition = getTransition(mReenterTransition, USE_DEFAULT_TRANSITION,                        R.styleable.Window_windowReenterTransition);                mSharedElementEnterTransition = getTransition(mSharedElementEnterTransition, null,                        R.styleable.Window_windowSharedElementEnterTransition);                mSharedElementReturnTransition = getTransition(mSharedElementReturnTransition,                        USE_DEFAULT_TRANSITION,                        R.styleable.Window_windowSharedElementReturnTransition);                mSharedElementExitTransition = getTransition(mSharedElementExitTransition, null,                        R.styleable.Window_windowSharedElementExitTransition);                mSharedElementReenterTransition = getTransition(mSharedElementReenterTransition,                        USE_DEFAULT_TRANSITION,                        R.styleable.Window_windowSharedElementReenterTransition);                if (mAllowEnterTransitionOverlap == null) {                    mAllowEnterTransitionOverlap = getWindowStyle().getBoolean(                            R.styleable.Window_windowAllowEnterTransitionOverlap, true);                }                if (mAllowReturnTransitionOverlap == null) {                    mAllowReturnTransitionOverlap = getWindowStyle().getBoolean(                            R.styleable.Window_windowAllowReturnTransitionOverlap, true);                }                if (mBackgroundFadeDurationMillis < 0) {                    mBackgroundFadeDurationMillis = getWindowStyle().getInteger(                            R.styleable.Window_windowTransitionBackgroundFadeDuration,                            DEFAULT_BACKGROUND_FADE_DURATION_MS);                }                if (mSharedElementsUseOverlay == null) {                    mSharedElementsUseOverlay = getWindowStyle().getBoolean(                            R.styleable.Window_windowSharedElementsUseOverlay, true);                }            }        }    }

这个方法的代码有点儿长,这里只截取重要部分,主要操作包括三部分:

  1. 调用generateDecor()创建出mDecor,即DecorView对象;

  2. generateLayout(mDecor)传入mDecor对象,生成mContentParent ;

  3. 设置标题栏信息。

首先查看generateDecor方法,源代码如下:

    protected DecorView generateDecor(int featureId) {        // System process doesn't have application context and in that case we need to directly use        // the context we have. Otherwise we want the application context, so we don't cling to the        // activity.        Context context;        if (mUseDecorContext) {            Context applicationContext = getContext().getApplicationContext();            if (applicationContext == null) {                context = getContext();            } else {                context = new DecorContext(applicationContext, getContext().getResources());                if (mTheme != -1) {                    context.setTheme(mTheme);                }            }        } else {            context = getContext();        }        return new DecorView(context, featureId, this, getAttributes());    }
这个方法非常简单,就是创建了一个DecorView对象,并返回出去。关于DecorView的具体内容可以查看其构造方法:
/** @hide */public class DecorView extends FrameLayout implements RootViewSurfaceTaker, WindowCallbacks {    DecorView(Context context, int featureId, PhoneWindow window,            WindowManager.LayoutParams params) {        super(context);        mFeatureId = featureId;        mShowInterpolator = AnimationUtils.loadInterpolator(context,                android.R.interpolator.linear_out_slow_in);        mHideInterpolator = AnimationUtils.loadInterpolator(context,                android.R.interpolator.fast_out_linear_in);        mBarEnterExitDuration = context.getResources().getInteger(                R.integer.dock_enter_exit_duration);        mForceWindowDrawsStatusBarBackground = context.getResources().getBoolean(                R.bool.config_forceWindowDrawsStatusBarBackground)                && context.getApplicationInfo().targetSdkVersion >= N;        mSemiTransparentStatusBarColor = context.getResources().getColor(                R.color.system_bar_background_semi_transparent, null /* theme */);        updateAvailableWidth();        setWindow(window);        updateLogTag(params);        mResizeShadowSize = context.getResources().getDimensionPixelSize(                R.dimen.resize_shadow_size);        initResizingPaints();    }}

这里也是比较简单的,从这里知道了DecorView是一个FrameLayout的。DecorView是Activity的顶级View,一般来说它内部包含标题栏和内容栏(加载布局文件layout.xml,即mContentParent)。内容栏是一定存在的,并且具体的id是‘content’。因此这个时候创建出的DecorView还是一个空白的FrameLayout。先不要急,这是怎么知道的,会在下面的内容会揭示出来的。

继续回到installDecor方法中调用的generateLayout方法:

    protected ViewGroup generateLayout(DecorView decor) {        // Apply data from current theme.        TypedArray a = getWindowStyle();        if (false) {            System.out.println("From style:");            String s = "Attrs:";            for (int i = 0; i < R.styleable.Window.length; i++) {                s = s + " " + Integer.toHexString(R.styleable.Window[i]) + "="                        + a.getString(i);            }            System.out.println(s);        }        mIsFloating = a.getBoolean(R.styleable.Window_windowIsFloating, false);        int flagsToUpdate = (FLAG_LAYOUT_IN_SCREEN|FLAG_LAYOUT_INSET_DECOR)                & (~getForcedWindowFlags());        if (mIsFloating) {            setLayout(WRAP_CONTENT, WRAP_CONTENT);            setFlags(0, flagsToUpdate);        } else {            setFlags(FLAG_LAYOUT_IN_SCREEN|FLAG_LAYOUT_INSET_DECOR, flagsToUpdate);        }        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 (a.getBoolean(R.styleable.Window_windowActionBarOverlay, false)) {            requestFeature(FEATURE_ACTION_BAR_OVERLAY);        }        if (a.getBoolean(R.styleable.Window_windowActionModeOverlay, false)) {            requestFeature(FEATURE_ACTION_MODE_OVERLAY);        }        if (a.getBoolean(R.styleable.Window_windowSwipeToDismiss, false)) {            requestFeature(FEATURE_SWIPE_TO_DISMISS);        }        if (a.getBoolean(R.styleable.Window_windowFullscreen, false)) {            setFlags(FLAG_FULLSCREEN, FLAG_FULLSCREEN & (~getForcedWindowFlags()));        }        if (a.getBoolean(R.styleable.Window_windowTranslucentStatus,                false)) {            setFlags(FLAG_TRANSLUCENT_STATUS, FLAG_TRANSLUCENT_STATUS                    & (~getForcedWindowFlags()));        }        if (a.getBoolean(R.styleable.Window_windowTranslucentNavigation,                false)) {            setFlags(FLAG_TRANSLUCENT_NAVIGATION, FLAG_TRANSLUCENT_NAVIGATION                    & (~getForcedWindowFlags()));        }        if (a.getBoolean(R.styleable.Window_windowOverscan, false)) {            setFlags(FLAG_LAYOUT_IN_OVERSCAN, FLAG_LAYOUT_IN_OVERSCAN&(~getForcedWindowFlags()));        }        if (a.getBoolean(R.styleable.Window_windowShowWallpaper, false)) {            setFlags(FLAG_SHOW_WALLPAPER, FLAG_SHOW_WALLPAPER&(~getForcedWindowFlags()));        }        if (a.getBoolean(R.styleable.Window_windowEnableSplitTouch,                getContext().getApplicationInfo().targetSdkVersion                        >= android.os.Build.VERSION_CODES.HONEYCOMB)) {            setFlags(FLAG_SPLIT_TOUCH, FLAG_SPLIT_TOUCH&(~getForcedWindowFlags()));        }        a.getValue(R.styleable.Window_windowMinWidthMajor, mMinWidthMajor);        a.getValue(R.styleable.Window_windowMinWidthMinor, mMinWidthMinor);        if (DEBUG) Log.d(TAG, "Min width minor: " + mMinWidthMinor.coerceToString()                + ", major: " + mMinWidthMajor.coerceToString());        if (a.hasValue(R.styleable.Window_windowFixedWidthMajor)) {            if (mFixedWidthMajor == null) mFixedWidthMajor = new TypedValue();            a.getValue(R.styleable.Window_windowFixedWidthMajor,                    mFixedWidthMajor);        }        if (a.hasValue(R.styleable.Window_windowFixedWidthMinor)) {            if (mFixedWidthMinor == null) mFixedWidthMinor = new TypedValue();            a.getValue(R.styleable.Window_windowFixedWidthMinor,                    mFixedWidthMinor);        }        if (a.hasValue(R.styleable.Window_windowFixedHeightMajor)) {            if (mFixedHeightMajor == null) mFixedHeightMajor = new TypedValue();            a.getValue(R.styleable.Window_windowFixedHeightMajor,                    mFixedHeightMajor);        }        if (a.hasValue(R.styleable.Window_windowFixedHeightMinor)) {            if (mFixedHeightMinor == null) mFixedHeightMinor = new TypedValue();            a.getValue(R.styleable.Window_windowFixedHeightMinor,                    mFixedHeightMinor);        }        if (a.getBoolean(R.styleable.Window_windowContentTransitions, false)) {            requestFeature(FEATURE_CONTENT_TRANSITIONS);        }        if (a.getBoolean(R.styleable.Window_windowActivityTransitions, false)) {            requestFeature(FEATURE_ACTIVITY_TRANSITIONS);        }        mIsTranslucent = a.getBoolean(R.styleable.Window_windowIsTranslucent, false);        final Context context = getContext();        final int targetSdk = context.getApplicationInfo().targetSdkVersion;        final boolean targetPreHoneycomb = targetSdk < android.os.Build.VERSION_CODES.HONEYCOMB;        final boolean targetPreIcs = targetSdk < android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH;        final boolean targetPreL = targetSdk < android.os.Build.VERSION_CODES.LOLLIPOP;        final boolean targetHcNeedsOptions = context.getResources().getBoolean(                R.bool.target_honeycomb_needs_options_menu);        final boolean noActionBar = !hasFeature(FEATURE_ACTION_BAR) || hasFeature(FEATURE_NO_TITLE);        if (targetPreHoneycomb || (targetPreIcs && targetHcNeedsOptions && noActionBar)) {            setNeedsMenuKey(WindowManager.LayoutParams.NEEDS_MENU_SET_TRUE);        } else {            setNeedsMenuKey(WindowManager.LayoutParams.NEEDS_MENU_SET_FALSE);        }        if (!mForcedStatusBarColor) {            mStatusBarColor = a.getColor(R.styleable.Window_statusBarColor, 0xFF000000);        }        if (!mForcedNavigationBarColor) {            mNavigationBarColor = a.getColor(R.styleable.Window_navigationBarColor, 0xFF000000);        }        WindowManager.LayoutParams params = getAttributes();        // Non-floating windows on high end devices must put up decor beneath the system bars and        // therefore must know about visibility changes of those.        if (!mIsFloating && ActivityManager.isHighEndGfx()) {            if (!targetPreL && a.getBoolean(                    R.styleable.Window_windowDrawsSystemBarBackgrounds,                    false)) {                setFlags(FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS,                        FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS & ~getForcedWindowFlags());            }            if (mDecor.mForceWindowDrawsStatusBarBackground) {                params.privateFlags |= PRIVATE_FLAG_FORCE_DRAW_STATUS_BAR_BACKGROUND;            }        }        if (a.getBoolean(R.styleable.Window_windowLightStatusBar, false)) {            decor.setSystemUiVisibility(                    decor.getSystemUiVisibility() | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);        }        if (mAlwaysReadCloseOnTouchAttr || getContext().getApplicationInfo().targetSdkVersion                >= android.os.Build.VERSION_CODES.HONEYCOMB) {            if (a.getBoolean(                    R.styleable.Window_windowCloseOnTouchOutside,                    false)) {                setCloseOnTouchOutsideIfNotSet(true);            }        }        if (!hasSoftInputMode()) {            params.softInputMode = a.getInt(                    R.styleable.Window_windowSoftInputMode,                    params.softInputMode);        }        if (a.getBoolean(R.styleable.Window_backgroundDimEnabled,                mIsFloating)) {            /* All dialogs should have the window dimmed */            if ((getForcedWindowFlags()&WindowManager.LayoutParams.FLAG_DIM_BEHIND) == 0) {                params.flags |= WindowManager.LayoutParams.FLAG_DIM_BEHIND;            }            if (!haveDimAmount()) {                params.dimAmount = a.getFloat(                        android.R.styleable.Window_backgroundDimAmount, 0.5f);            }        }        if (params.windowAnimations == 0) {            params.windowAnimations = a.getResourceId(                    R.styleable.Window_windowAnimationStyle, 0);        }        // The rest are only done if this window is not embedded; otherwise,        // the values are inherited from our container.        if (getContainer() == null) {            if (mBackgroundDrawable == null) {                if (mBackgroundResource == 0) {                    mBackgroundResource = a.getResourceId(                            R.styleable.Window_windowBackground, 0);                }                if (mFrameResource == 0) {                    mFrameResource = a.getResourceId(R.styleable.Window_windowFrame, 0);                }                mBackgroundFallbackResource = a.getResourceId(                        R.styleable.Window_windowBackgroundFallback, 0);                if (false) {                    System.out.println("Background: "                            + Integer.toHexString(mBackgroundResource) + " Frame: "                            + Integer.toHexString(mFrameResource));                }            }            if (mLoadElevation) {                mElevation = a.getDimension(R.styleable.Window_windowElevation, 0);            }            mClipToOutline = a.getBoolean(R.styleable.Window_windowClipToOutline, false);            mTextColor = a.getColor(R.styleable.Window_textColor, Color.TRANSPARENT);        }        // Inflate the window decor.        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!");        } else if ((features & ((1 << FEATURE_PROGRESS) | (1 << FEATURE_INDETERMINATE_PROGRESS))) != 0                && (features & (1 << FEATURE_ACTION_BAR)) == 0) {            // Special case for a window with only a progress bar (and title).            // XXX Need to have a no-title version of embedded windows.            layoutResource = R.layout.screen_progress;            // System.out.println("Progress!");        } else if ((features & (1 << FEATURE_CUSTOM_TITLE)) != 0) {            // Special case for a window with a custom title.            // If the window is floating, we need a dialog layout            if (mIsFloating) {                TypedValue res = new TypedValue();                getContext().getTheme().resolveAttribute(                        R.attr.dialogCustomTitleDecorLayout, res, true);                layoutResource = res.resourceId;            } else {                layoutResource = R.layout.screen_custom_title;            }            // XXX Remove this once action bar supports these features.            removeFeature(FEATURE_ACTION_BAR);        } else if ((features & (1 << FEATURE_NO_TITLE)) == 0) {            // If no other features and not embedded, only need a title.            // If the window is floating, we need a dialog layout            if (mIsFloating) {                TypedValue res = new TypedValue();                getContext().getTheme().resolveAttribute(                        R.attr.dialogTitleDecorLayout, res, true);                layoutResource = res.resourceId;            } else if ((features & (1 << FEATURE_ACTION_BAR)) != 0) {                layoutResource = a.getResourceId(                        R.styleable.Window_windowActionBarFullscreenDecorLayout,                        R.layout.screen_action_bar);            } else {                layoutResource = R.layout.screen_title;            }            // System.out.println("Title!");        } else if ((features & (1 << FEATURE_ACTION_MODE_OVERLAY)) != 0) {            layoutResource = R.layout.screen_simple_overlay_action_mode;        } else {            // Embedded, so no decoration is needed.            layoutResource = R.layout.screen_simple;            // System.out.println("Simple!");        }        mDecor.startChanging();        mDecor.onResourcesLoaded(mLayoutInflater, layoutResource);   // 将上面选定的布局文件inflate为View,添加到DecorView中        ViewGroup contentParent = (ViewGroup)findViewById(ID_ANDROID_CONTENT);   // 找到id为content的framlayout赋给mContentParent        if (contentParent == null) {            throw new RuntimeException("Window couldn't find content container view");        }        if ((features & (1 << FEATURE_INDETERMINATE_PROGRESS)) != 0) {            ProgressBar progress = getCircularProgressBar(false);            if (progress != null) {                progress.setIndeterminate(true);            }        }        if ((features & (1 << FEATURE_SWIPE_TO_DISMISS)) != 0) {            registerSwipeCallbacks();        }        // Remaining setup -- of background and title -- that only applies        // to top-level windows.        if (getContainer() == null) {            final Drawable background;            if (mBackgroundResource != 0) {                background = getContext().getDrawable(mBackgroundResource);            } else {                background = mBackgroundDrawable;            }            mDecor.setWindowBackground(background);            final Drawable frame;            if (mFrameResource != 0) {                frame = getContext().getDrawable(mFrameResource);            } else {                frame = null;            }            mDecor.setWindowFrame(frame);            mDecor.setElevation(mElevation);            mDecor.setClipToOutline(mClipToOutline);            if (mTitle != null) {                setTitle(mTitle);            }            if (mTitleColor == 0) {                mTitleColor = mTextColor;            }            setTitleColor(mTitleColor);        }        mDecor.finishChanging();        return contentParent;    }

这个方法代码非常多,我们只需要关注重点即可。

  1. 首先获取<Application android:theme=""/>, <Activity/>节点指定的themes或者代码;

  2. 然后获取窗口Features, 设置相应的修饰布局文件,这些xml文件位于frameworks/base/core/res/res/layout下;

  3. 接着调用了DecorView的onResourcesLoaded方法将上面选定的布局文件inflate为View,添加到DecorView中;

  4. 找到id为content的framlayout赋给mContentParent,由于已经将屏幕View加为mDecor的子View,因此mContentParent也是mDecor的子View;

  5. ​设置mDecor的背景和标题。

这里我们先随便找一个布局文件,如screen_simple.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:fitsSystemWindows="true"    android:orientation="vertical">    <ViewStub android:id="@+id/action_mode_bar_stub"              android:inflatedId="@+id/action_mode_bar"              android:layout="@layout/action_mode_bar"              android:layout_width="match_parent"              android:layout_height="wrap_content" />    <FrameLayout         android:id="@android:id/content"         android:layout_width="match_parent"         android:layout_height="match_parent"         android:foregroundInsidePadding="false"         android:foregroundGravity="fill_horizontal|top"         android:foreground="?android:attr/windowContentOverlay" /></LinearLayout>

从布局文件就可以认证上述所说的content,源码中id为"@android:id/content"的FrameLayout就是内容区域,其会赋值给PhoneWindow类中的属性mContentParent,分析后续代码后再来细看。

回到generateLayout方法,查看调用的onResourcesLoaded方法:

    void onResourcesLoaded(LayoutInflater inflater, int layoutResource) {        mStackId = getStackId();        if (mBackdropFrameRenderer != null) {            loadBackgroundDrawablesIfNeeded();            mBackdropFrameRenderer.onResourcesLoaded(                    this, mResizingBackgroundDrawable, mCaptionBackgroundDrawable,                    mUserCaptionBackgroundDrawable, getCurrentColor(mStatusColorViewState),                    getCurrentColor(mNavigationColorViewState));        }        mDecorCaptionView = createDecorCaptionView(inflater);        final View root = inflater.inflate(layoutResource, null);  //布局文件加载进来生成root视图        if (mDecorCaptionView != null) {            if (mDecorCaptionView.getParent() == null) {                addView(mDecorCaptionView,                        new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT));            }            mDecorCaptionView.addView(root,                    new ViewGroup.MarginLayoutParams(MATCH_PARENT, MATCH_PARENT));        } else {            // Put it below the color views.            addView(root, 0, new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT));   // 调用addView方法添加到DecorView视图        }        mContentRoot = (ViewGroup) root;        initializeElevation();    }

主要就是将适配的布局文件加载进来生成root视图,调用addView方法添加到DecorView视图。

继续回到generateLayout方法,将窗口修饰布局文件中id="@android:id/content"的View赋值给mContentParent, 后续自定义的view和layout都将是其子View。处理完成后就将mContentParent返回。

再回到PhoneWindow的setContentView方法中, 继续调用了mLayoutInflater.inflate(layoutResID, mContentParent),在这里就是把我们写的布局文件通过inflater加入到mContentParent中。这样我们写的布局文件成功的添加到DecorView中的mContentParent。

现在只是完成了DecorView的创建并初始化,我们还需要把这个创建并初始化完DecorView添加并显示到屏幕上,这里我们就需要用到WindowManager。

4、Activity入口

很多同学会有疑问,上面的attach方法是在哪里调用的?然后View又是如何显示出来的?我们知道,Activity的入口就是ActivityThread类,我们找到其中的handleMessage处理的代码:

        public void handleMessage(Message msg) {            if (DEBUG_MESSAGES) Slog.v(TAG, ">>> handling: " + codeToString(msg.what));            switch (msg.what) {                case LAUNCH_ACTIVITY: {                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityStart");                    final ActivityClientRecord r = (ActivityClientRecord) msg.obj;                    r.packageInfo = getPackageInfoNoCheck(                            r.activityInfo.applicationInfo, r.compatInfo);                    handleLaunchActivity(r, null, "LAUNCH_ACTIVITY");                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                } break;                case RELAUNCH_ACTIVITY: {                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityRestart");                    ActivityClientRecord r = (ActivityClientRecord)msg.obj;                    handleRelaunchActivity(r);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                } break;                case PAUSE_ACTIVITY: {                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityPause");                    SomeArgs args = (SomeArgs) msg.obj;                    handlePauseActivity((IBinder) args.arg1, false,                            (args.argi1 & USER_LEAVING) != 0, args.argi2,                            (args.argi1 & DONT_REPORT) != 0, args.argi3);                    maybeSnapshot();                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                } break;                case PAUSE_ACTIVITY_FINISHING: {                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityPause");                    SomeArgs args = (SomeArgs) msg.obj;                    handlePauseActivity((IBinder) args.arg1, true, (args.argi1 & USER_LEAVING) != 0,                            args.argi2, (args.argi1 & DONT_REPORT) != 0, args.argi3);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                } break;                case STOP_ACTIVITY_SHOW: {                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityStop");                    SomeArgs args = (SomeArgs) msg.obj;                    handleStopActivity((IBinder) args.arg1, true, args.argi2, args.argi3);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                } break;                case STOP_ACTIVITY_HIDE: {                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityStop");                    SomeArgs args = (SomeArgs) msg.obj;                    handleStopActivity((IBinder) args.arg1, false, args.argi2, args.argi3);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                } break;                case SHOW_WINDOW:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityShowWindow");                    handleWindowVisibility((IBinder)msg.obj, true);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case HIDE_WINDOW:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityHideWindow");                    handleWindowVisibility((IBinder)msg.obj, false);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case RESUME_ACTIVITY:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityResume");                    SomeArgs args = (SomeArgs) msg.obj;                    handleResumeActivity((IBinder) args.arg1, true, args.argi1 != 0, true,                            args.argi3, "RESUME_ACTIVITY");                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case SEND_RESULT:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityDeliverResult");                    handleSendResult((ResultData)msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case DESTROY_ACTIVITY:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityDestroy");                    handleDestroyActivity((IBinder)msg.obj, msg.arg1 != 0,                            msg.arg2, false);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case BIND_APPLICATION:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "bindApplication");                    AppBindData data = (AppBindData)msg.obj;                    handleBindApplication(data);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case EXIT_APPLICATION:                    if (mInitialApplication != null) {                        mInitialApplication.onTerminate();                    }                    Looper.myLooper().quit();                    break;                case NEW_INTENT:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityNewIntent");                    handleNewIntent((NewIntentData)msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case RECEIVER:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "broadcastReceiveComp");                    handleReceiver((ReceiverData)msg.obj);                    maybeSnapshot();                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case CREATE_SERVICE:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, ("serviceCreate: " + String.valueOf(msg.obj)));                    handleCreateService((CreateServiceData)msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case BIND_SERVICE:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "serviceBind");                    handleBindService((BindServiceData)msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case UNBIND_SERVICE:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "serviceUnbind");                    handleUnbindService((BindServiceData)msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case SERVICE_ARGS:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, ("serviceStart: " + String.valueOf(msg.obj)));                    handleServiceArgs((ServiceArgsData)msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case STOP_SERVICE:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "serviceStop");                    handleStopService((IBinder)msg.obj);                    maybeSnapshot();                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case CONFIGURATION_CHANGED:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "configChanged");                    mCurDefaultDisplayDpi = ((Configuration)msg.obj).densityDpi;                    mUpdatingSystemConfig = true;                    handleConfigurationChanged((Configuration)msg.obj, null);                    mUpdatingSystemConfig = false;                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case CLEAN_UP_CONTEXT:                    ContextCleanupInfo cci = (ContextCleanupInfo)msg.obj;                    cci.context.performFinalCleanup(cci.who, cci.what);                    break;                case GC_WHEN_IDLE:                    scheduleGcIdler();                    break;                case DUMP_SERVICE:                    handleDumpService((DumpComponentInfo)msg.obj);                    break;                case LOW_MEMORY:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "lowMemory");                    handleLowMemory();                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case ACTIVITY_CONFIGURATION_CHANGED:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "activityConfigChanged");                    handleActivityConfigurationChanged((ActivityConfigChangeData) msg.obj,                            msg.arg1 == 1 ? REPORT_TO_ACTIVITY : !REPORT_TO_ACTIVITY);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case PROFILER_CONTROL:                    handleProfilerControl(msg.arg1 != 0, (ProfilerInfo)msg.obj, msg.arg2);                    break;                case CREATE_BACKUP_AGENT:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "backupCreateAgent");                    handleCreateBackupAgent((CreateBackupAgentData)msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case DESTROY_BACKUP_AGENT:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "backupDestroyAgent");                    handleDestroyBackupAgent((CreateBackupAgentData)msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case SUICIDE:                    Process.killProcess(Process.myPid());                    break;                case REMOVE_PROVIDER:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "providerRemove");                    completeRemoveProvider((ProviderRefCount)msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case ENABLE_JIT:                    ensureJitEnabled();                    break;                case DISPATCH_PACKAGE_BROADCAST:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "broadcastPackage");                    handleDispatchPackageBroadcast(msg.arg1, (String[])msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case SCHEDULE_CRASH:                    throw new RemoteServiceException((String)msg.obj);                case DUMP_HEAP:                    handleDumpHeap(msg.arg1 != 0, (DumpHeapData)msg.obj);                    break;                case DUMP_ACTIVITY:                    handleDumpActivity((DumpComponentInfo)msg.obj);                    break;                case DUMP_PROVIDER:                    handleDumpProvider((DumpComponentInfo)msg.obj);                    break;                case SLEEPING:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "sleeping");                    handleSleeping((IBinder)msg.obj, msg.arg1 != 0);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case SET_CORE_SETTINGS:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "setCoreSettings");                    handleSetCoreSettings((Bundle) msg.obj);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case UPDATE_PACKAGE_COMPATIBILITY_INFO:                    handleUpdatePackageCompatibilityInfo((UpdateCompatibilityData)msg.obj);                    break;                case TRIM_MEMORY:                    Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "trimMemory");                    handleTrimMemory(msg.arg1);                    Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);                    break;                case UNSTABLE_PROVIDER_DIED:                    handleUnstableProviderDied((IBinder)msg.obj, false);                    break;                case REQUEST_ASSIST_CONTEXT_EXTRAS:                    handleRequestAssistContextExtras((RequestAssistContextExtras)msg.obj);                    break;                case TRANSLUCENT_CONVERSION_COMPLETE:                    handleTranslucentConversionComplete((IBinder)msg.obj, msg.arg1 == 1);                    break;                case INSTALL_PROVIDER:                    handleInstallProvider((ProviderInfo) msg.obj);                    break;                case ON_NEW_ACTIVITY_OPTIONS:                    Pair<IBinder, ActivityOptions> pair = (Pair<IBinder, ActivityOptions>) msg.obj;                    onNewActivityOptions(pair.first, pair.second);                    break;                case CANCEL_VISIBLE_BEHIND:                    handleCancelVisibleBehind((IBinder) msg.obj);                    break;                case BACKGROUND_VISIBLE_BEHIND_CHANGED:                    handleOnBackgroundVisibleBehindChanged((IBinder) msg.obj, msg.arg1 > 0);                    break;                case ENTER_ANIMATION_COMPLETE:                    handleEnterAnimationComplete((IBinder) msg.obj);                    break;                case START_BINDER_TRACKING:                    handleStartBinderTracking();                    break;                case STOP_BINDER_TRACKING_AND_DUMP:                    handleStopBinderTrackingAndDump((ParcelFileDescriptor) msg.obj);                    break;                case MULTI_WINDOW_MODE_CHANGED:                    handleMultiWindowModeChanged((IBinder) msg.obj, msg.arg1 == 1);                    break;                case PICTURE_IN_PICTURE_MODE_CHANGED:                    handlePictureInPictureModeChanged((IBinder) msg.obj, msg.arg1 == 1);                    break;                case LOCAL_VOICE_INTERACTION_STARTED:                    handleLocalVoiceInteractionStarted((IBinder) ((SomeArgs) msg.obj).arg1,                            (IVoiceInteractor) ((SomeArgs) msg.obj).arg2);                    break;            }            Object obj = msg.obj;            if (obj instanceof SomeArgs) {                ((SomeArgs) obj).recycle();            }            if (DEBUG_MESSAGES) Slog.v(TAG, "<<< done: " + codeToString(msg.what));        }

这里的代码非常多,但是仔细去查看,会发现很多有用的消息,会根据不同的message调用对应的方法,如handleLaunchActivity()、handleResumeActivity()、handlePauseActivity()、handleStopActivity()等,从方法名就能大概猜出来起用途。这里我们来分别查看handleLaunchActivity()和handleResumeActivity()方法,其他方法类似。

5、performLaunchActivity

首先来看handleLaunchActivity方法,源码如下:

    private void handleLaunchActivity(ActivityClientRecord r, Intent customIntent, String reason) {        // If we are getting ready to gc after going to the background, well        // we are back active so skip it.        unscheduleGcIdler();        mSomeActivitiesChanged = true;        if (r.profilerInfo != null) {            mProfiler.setProfiler(r.profilerInfo);            mProfiler.startProfiling();        }        // Make sure we are running with the most recent config.        handleConfigurationChanged(null, null);        if (localLOGV) Slog.v(            TAG, "Handling launch of " + r);        // Initialize before creating the activity        WindowManagerGlobal.initialize();        Activity a = performLaunchActivity(r, customIntent);    //         if (a != null) {            r.createdConfig = new Configuration(mConfiguration);            reportSizeConfigurations(r);            Bundle oldState = r.state;            handleResumeActivity(r.token, false, r.isForward,                    !r.activity.mFinished && !r.startsNotResumed, r.lastProcessedSeq, reason);            if (!r.activity.mFinished && r.startsNotResumed) {                // The activity manager actually wants this one to start out paused, because it                // needs to be visible but isn't in the foreground. We accomplish this by going                // through the normal startup (because activities expect to go through onResume()                // the first time they run, before their window is displayed), and then pausing it.                // However, in this case we do -not- need to do the full pause cycle (of freezing                // and such) because the activity manager assumes it can just retain the current                // state it has.                performPauseActivityIfNeeded(r, reason);                // We need to keep around the original state, in case we need to be created again.                // But we only do this for pre-Honeycomb apps, which always save their state when                // pausing, so we can not have them save their state when restarting from a paused                // state. For HC and later, we want to (and can) let the state be saved as the                // normal part of stopping the activity.                if (r.isPreHoneycomb()) {                    r.state = oldState;                }            }        } else {            // If there was an error, for any reason, tell the activity manager to stop us.            try {                ActivityManagerNative.getDefault()                    .finishActivity(r.token, Activity.RESULT_CANCELED, null,                            Activity.DONT_FINISH_TASK_WITH_ACTIVITY);            } catch (RemoteException ex) {                throw ex.rethrowFromSystemServer();            }        }    }

主要调用了performLaunchActivity方法,继续查看performLaunchActivity源代码:

    private Activity performLaunchActivity(ActivityClientRecord r, Intent customIntent) {        // System.out.println("##### [" + System.currentTimeMillis() + "] ActivityThread.performLaunchActivity(" + r + ")");        ActivityInfo aInfo = r.activityInfo;        if (r.packageInfo == null) {            r.packageInfo = getPackageInfo(aInfo.applicationInfo, r.compatInfo,                    Context.CONTEXT_INCLUDE_CODE);        }        ComponentName component = r.intent.getComponent();        if (component == null) {            component = r.intent.resolveActivity(                mInitialApplication.getPackageManager());            r.intent.setComponent(component);        }        if (r.activityInfo.targetActivity != null) {            component = new ComponentName(r.activityInfo.packageName,                    r.activityInfo.targetActivity);        }        Activity activity = null;        try {            java.lang.ClassLoader cl = r.packageInfo.getClassLoader();            activity = mInstrumentation.newActivity(                    cl, component.getClassName(), r.intent);    // newActivity方法            StrictMode.incrementExpectedActivityCount(activity.getClass());            r.intent.setExtrasClassLoader(cl);            r.intent.prepareToEnterProcess();            if (r.state != null) {                r.state.setClassLoader(cl);            }        } catch (Exception e) {            if (!mInstrumentation.onException(activity, e)) {                throw new RuntimeException(                    "Unable to instantiate activity " + component                    + ": " + e.toString(), e);            }        }        try {            Application app = r.packageInfo.makeApplication(false, mInstrumentation);            if (localLOGV) Slog.v(TAG, "Performing launch of " + r);            if (localLOGV) Slog.v(                    TAG, r + ": app=" + app                    + ", appName=" + app.getPackageName()                    + ", pkg=" + r.packageInfo.getPackageName()                    + ", comp=" + r.intent.getComponent().toShortString()                    + ", dir=" + r.packageInfo.getAppDir());            if (activity != null) {                Context appContext = createBaseContextForActivity(r, activity);                CharSequence title = r.activityInfo.loadLabel(appContext.getPackageManager());                Configuration config = new Configuration(mCompatConfiguration);                if (r.overrideConfig != null) {                    config.updateFrom(r.overrideConfig);                }                if (DEBUG_CONFIGURATION) Slog.v(TAG, "Launching activity "                        + r.activityInfo.name + " with config " + config);                Window window = null;                if (r.mPendingRemoveWindow != null && r.mPreserveWindow) {                    window = r.mPendingRemoveWindow;                    r.mPendingRemoveWindow = null;                    r.mPendingRemoveWindowManager = null;                }                activity.attach(appContext, this, getInstrumentation(), r.token,                        r.ident, app, r.intent, r.activityInfo, title, r.parent,                        r.embeddedID, r.lastNonConfigurationInstances, config,                        r.referrer, r.voiceInteractor, window);   // attach方法                if (customIntent != null) {                    activity.mIntent = customIntent;                }                r.lastNonConfigurationInstances = null;                activity.mStartedActivity = false;                int theme = r.activityInfo.getThemeResource();                if (theme != 0) {                    activity.setTheme(theme);                }                activity.mCalled = false;                if (r.isPersistable()) {                    mInstrumentation.callActivityOnCreate(activity, r.state, r.persistentState);                } else {                    mInstrumentation.callActivityOnCreate(activity, r.state);                }                if (!activity.mCalled) {                    throw new SuperNotCalledException(                        "Activity " + r.intent.getComponent().toShortString() +                        " did not call through to super.onCreate()");                }                r.activity = activity;                r.stopped = true;                if (!r.activity.mFinished) {                    activity.performStart();                    r.stopped = false;                }                if (!r.activity.mFinished) {                    if (r.isPersistable()) {                        if (r.state != null || r.persistentState != null) {                            mInstrumentation.callActivityOnRestoreInstanceState(activity, r.state,                                    r.persistentState);                        }                    } else if (r.state != null) {                        mInstrumentation.callActivityOnRestoreInstanceState(activity, r.state);   // create方法                    }                }                if (!r.activity.mFinished) {                    activity.mCalled = false;                    if (r.isPersistable()) {                        mInstrumentation.callActivityOnPostCreate(activity, r.state,                                r.persistentState);                    } else {                        mInstrumentation.callActivityOnPostCreate(activity, r.state);                    }                    if (!activity.mCalled) {                        throw new SuperNotCalledException(                            "Activity " + r.intent.getComponent().toShortString() +                            " did not call through to super.onPostCreate()");                    }                }            }            r.paused = true;            mActivities.put(r.token, r);        } catch (SuperNotCalledException e) {            throw e;        } catch (Exception e) {            if (!mInstrumentation.onException(activity, e)) {                throw new RuntimeException(                    "Unable to start activity " + component                    + ": " + e.toString(), e);            }        }        return activity;    }

首先通过Activity的类名构建一个Activity对象,可以查看Instrumentation类的newActivity方法。接着看到了非常熟悉的方法,就是我们前面看到的Activity类的attach()方法。就是在attach方法里面初始化PhoneWindow对象的。

后面调用了Instrumentation类的callActivityOnCreate方法,主要通过Instrumentation对象执行Activity的onCreate()方法,Activity的生命周期方法都是由Instrumentation对象来调用的,这里不再详细深入。

到目前为止,View只是加载到了Activity,并没有显示出来,继续研究ActivityThread的handleResumeActivity方法。

6、performResumeActivity

首先来看handleResumeActivity方法:

    final void handleResumeActivity(IBinder token,            boolean clearHide, boolean isForward, boolean reallyResume, int seq, String reason) {        ActivityClientRecord r = mActivities.get(token);        if (!checkAndUpdateLifecycleSeq(seq, r, "resumeActivity")) {            return;        }        // If we are getting ready to gc after going to the background, well        // we are back active so skip it.        unscheduleGcIdler();        mSomeActivitiesChanged = true;        // TODO Push resumeArgs into the activity for consideration        r = performResumeActivity(token, clearHide, reason);    // performResumeActivity        if (r != null) {            final Activity a = r.activity;            if (localLOGV) Slog.v(                TAG, "Resume " + r + " started activity: " +                a.mStartedActivity + ", hideForNow: " + r.hideForNow                + ", finished: " + a.mFinished);            final int forwardBit = isForward ?                    WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION : 0;            // If the window hasn't yet been added to the window manager,            // and this guy didn't finish itself or start another activity,            // then go ahead and add the window.            boolean willBeVisible = !a.mStartedActivity;            if (!willBeVisible) {                try {                    willBeVisible = ActivityManagerNative.getDefault().willActivityBeVisible(                            a.getActivityToken());                } catch (RemoteException e) {                    throw e.rethrowFromSystemServer();                }            }            if (r.window == null && !a.mFinished && willBeVisible) {                r.window = r.activity.getWindow();                View decor = r.window.getDecorView();                decor.setVisibility(View.INVISIBLE);                ViewManager wm = a.getWindowManager();                WindowManager.LayoutParams l = r.window.getAttributes();                a.mDecor = decor;                l.type = WindowManager.LayoutParams.TYPE_BASE_APPLICATION;                l.softInputMode |= forwardBit;                if (r.mPreserveWindow) {                    a.mWindowAdded = true;                    r.mPreserveWindow = false;                    // Normally the ViewRoot sets up callbacks with the Activity                    // in addView->ViewRootImpl#setView. If we are instead reusing                    // the decor view we have to notify the view root that the                    // callbacks may have changed.                    ViewRootImpl impl = decor.getViewRootImpl();                    if (impl != null) {                        impl.notifyChildRebuilt();                    }                }                if (a.mVisibleFromClient && !a.mWindowAdded) {                    a.mWindowAdded = true;                    wm.addView(decor, l);    // addView                }            // If the window has already been added, but during resume            // we started another activity, then don't yet make the            // window visible.            } else if (!willBeVisible) {                if (localLOGV) Slog.v(                    TAG, "Launch " + r + " mStartedActivity set");                r.hideForNow = true;            }            // Get rid of anything left hanging around.            cleanUpPendingRemoveWindows(r, false /* force */);            // The window is now visible if it has been added, we are not            // simply finishing, and we are not starting another activity.            if (!r.activity.mFinished && willBeVisible                    && r.activity.mDecor != null && !r.hideForNow) {                if (r.newConfig != null) {                    performConfigurationChangedForActivity(r, r.newConfig, REPORT_TO_ACTIVITY);                    if (DEBUG_CONFIGURATION) Slog.v(TAG, "Resuming activity "                            + r.activityInfo.name + " with newConfig " + r.activity.mCurrentConfig);                    r.newConfig = null;                }                if (localLOGV) Slog.v(TAG, "Resuming " + r + " with isForward="                        + isForward);                WindowManager.LayoutParams l = r.window.getAttributes();                if ((l.softInputMode                        & WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION)                        != forwardBit) {                    l.softInputMode = (l.softInputMode                            & (~WindowManager.LayoutParams.SOFT_INPUT_IS_FORWARD_NAVIGATION))                            | forwardBit;                    if (r.activity.mVisibleFromClient) {                        ViewManager wm = a.getWindowManager();                        View decor = r.window.getDecorView();                        wm.updateViewLayout(decor, l);                    }                }                r.activity.mVisibleFromServer = true;                mNumVisibleActivities++;                if (r.activity.mVisibleFromClient) {                    r.activity.makeVisible();                }            }            if (!r.onlyLocalRequest) {                r.nextIdle = mNewActivities;                mNewActivities = r;                if (localLOGV) Slog.v(                    TAG, "Scheduling idle handler for " + r);                Looper.myQueue().addIdleHandler(new Idler());            }            r.onlyLocalRequest = false;            // Tell the activity manager we have resumed.            if (reallyResume) {                try {                    ActivityManagerNative.getDefault().activityResumed(token);                } catch (RemoteException ex) {                    throw ex.rethrowFromSystemServer();                }            }        } else {            // If an exception was thrown when trying to resume, then            // just end this activity.            try {                ActivityManagerNative.getDefault()                    .finishActivity(token, Activity.RESULT_CANCELED, null,                            Activity.DONT_FINISH_TASK_WITH_ACTIVITY);            } catch (RemoteException ex) {                throw ex.rethrowFromSystemServer();            }        }    }

这里首先调用了performResumeActivity方法,查看performResumeActivity源代码:

    public final ActivityClientRecord performResumeActivity(IBinder token,            boolean clearHide, String reason) {        ActivityClientRecord r = mActivities.get(token);        if (localLOGV) Slog.v(TAG, "Performing resume of " + r                + " finished=" + r.activity.mFinished);        if (r != null && !r.activity.mFinished) {            if (clearHide) {                r.hideForNow = false;                r.activity.mStartedActivity = false;            }            try {                r.activity.onStateNotSaved();                r.activity.mFragments.noteStateNotSaved();                if (r.pendingIntents != null) {                    deliverNewIntents(r, r.pendingIntents);                    r.pendingIntents = null;                }                if (r.pendingResults != null) {                    deliverResults(r, r.pendingResults);                    r.pendingResults = null;                }                r.activity.performResume();                // If there is a pending local relaunch that was requested when the activity was                // paused, it will put the activity into paused state when it finally happens.                // Since the activity resumed before being relaunched, we don't want that to happen,                // so we need to clear the request to relaunch paused.                for (int i = mRelaunchingActivities.size() - 1; i >= 0; i--) {                    final ActivityClientRecord relaunching = mRelaunchingActivities.get(i);                    if (relaunching.token == r.token                            && relaunching.onlyLocalRequest && relaunching.startsNotResumed) {                        relaunching.startsNotResumed = false;                    }                }                EventLog.writeEvent(LOG_AM_ON_RESUME_CALLED, UserHandle.myUserId(),                        r.activity.getComponentName().getClassName(), reason);                r.paused = false;                r.stopped = false;                r.state = null;                r.persistentState = null;            } catch (Exception e) {                if (!mInstrumentation.onException(r.activity, e)) {                    throw new RuntimeException(                        "Unable to resume activity "                        + r.intent.getComponent().toShortString()                        + ": " + e.toString(), e);                }            }        }        return r;    }

继续调用了Activity的performResume方法,这个方法内就是通过Instrumentation调用Activity的onResume()方法。

然后找到下面的wm.addView()方法,这个方法非常关键,wm是上面a.getWindowManager()获取到的mWindowManger对象,而这个对象是WindowManagerImpl。

7、addView

继续进入WindowManagerImpl类的addView方法:

    @Override    public void addView(@NonNull View view, @NonNull ViewGroup.LayoutParams params) {        applyDefaultToken(params);        mGlobal.addView(view, params, mContext.getDisplay(), mParentWindow);    }
其实WindowManagerImpl类的方法大部分都是代理的WindowManagerGlobal的方法。继续进入WindowManagerGlobal类的addView方法:
    public void addView(View view, ViewGroup.LayoutParams params,            Display display, Window parentWindow) {        if (view == null) {            throw new IllegalArgumentException("view must not be null");        }        if (display == null) {            throw new IllegalArgumentException("display must not be null");        }        if (!(params instanceof WindowManager.LayoutParams)) {            throw new IllegalArgumentException("Params must be WindowManager.LayoutParams");        }        final WindowManager.LayoutParams wparams = (WindowManager.LayoutParams) params;        if (parentWindow != null) {            parentWindow.adjustLayoutParamsForSubWindow(wparams);        } else {            // If there's no parent, then hardware acceleration for this view is            // set from the application's hardware acceleration setting.            final Context context = view.getContext();            if (context != null                    && (context.getApplicationInfo().flags                            & ApplicationInfo.FLAG_HARDWARE_ACCELERATED) != 0) {                wparams.flags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;            }        }        ViewRootImpl root;        View panelParentView = null;        synchronized (mLock) {            // Start watching for system property changes.            if (mSystemPropertyUpdater == null) {                mSystemPropertyUpdater = new Runnable() {                    @Override public void run() {                        synchronized (mLock) {                            for (int i = mRoots.size() - 1; i >= 0; --i) {                                mRoots.get(i).loadSystemProperties();                            }                        }                    }                };                SystemProperties.addChangeCallback(mSystemPropertyUpdater);            }            int index = findViewLocked(view, false);            if (index >= 0) {                if (mDyingViews.contains(view)) {                    // Don't wait for MSG_DIE to make it's way through root's queue.                    mRoots.get(index).doDie();                } else {                    throw new IllegalStateException("View " + view                            + " has already been added to the window manager.");                }                // The previous removeView() had not completed executing. Now it has.            }            // 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.size();                for (int i = 0; i < count; i++) {                    if (mRoots.get(i).mWindow.asBinder() == wparams.token) {                        panelParentView = mViews.get(i);                    }                }            }            root = new ViewRootImpl(view.getContext(), display);            view.setLayoutParams(wparams);            mViews.add(view);            mRoots.add(root);            mParams.add(wparams);        }        // do this last because it fires off messages to start doing things        try {            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;        }    }
从上面的代码可以看出,addView方法中,创建了一个ViewRootImpl对象,然后调用ViewRootImpl.setView()方法。
    /**     * We have one child     */    public void setView(View view, WindowManager.LayoutParams attrs, View panelParentView) {        synchronized (this) {            if (mView == null) {                mView = view;                mAttachInfo.mDisplayState = mDisplay.getState();                mDisplayManager.registerDisplayListener(mDisplayListener, mHandler);                mViewLayoutDirectionInitial = mView.getRawLayoutDirection();                mFallbackEventHandler.setView(view);                mWindowAttributes.copyFrom(attrs);                if (mWindowAttributes.packageName == null) {                    mWindowAttributes.packageName = mBasePackageName;                }                attrs = mWindowAttributes;                setTag();                if (DEBUG_KEEP_SCREEN_ON && (mClientWindowLayoutFlags                        & WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON) != 0                        && (attrs.flags&WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON) == 0) {                    Slog.d(mTag, "setView: FLAG_KEEP_SCREEN_ON changed from true to false!");                }                // Keep track of the actual window flags supplied by the client.                mClientWindowLayoutFlags = attrs.flags;                setAccessibilityFocus(null, null);                if (view instanceof RootViewSurfaceTaker) {                    mSurfaceHolderCallback =                            ((RootViewSurfaceTaker)view).willYouTakeTheSurface();                    if (mSurfaceHolderCallback != null) {                        mSurfaceHolder = new TakenSurfaceHolder();                        mSurfaceHolder.setFormat(PixelFormat.UNKNOWN);                    }                }                // Compute surface insets required to draw at specified Z value.                // TODO: Use real shadow insets for a constant max Z.                if (!attrs.hasManualSurfaceInsets) {                    attrs.setSurfaceInsets(view, false /*manual*/, true /*preservePrevious*/);                }                CompatibilityInfo compatibilityInfo =                        mDisplay.getDisplayAdjustments().getCompatibilityInfo();                mTranslator = compatibilityInfo.getTranslator();                // If the application owns the surface, don't enable hardware acceleration                if (mSurfaceHolder == null) {                    enableHardwareAcceleration(attrs);                }                boolean restore = false;                if (mTranslator != null) {                    mSurface.setCompatibilityTranslator(mTranslator);                    restore = true;                    attrs.backup();                    mTranslator.translateWindowLayout(attrs);                }                if (DEBUG_LAYOUT) Log.d(mTag, "WindowLayout in setView:" + attrs);                if (!compatibilityInfo.supportsScreen()) {                    attrs.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;                    mLastInCompatMode = true;                }                mSoftInputMode = attrs.softInputMode;                mWindowAttributesChanged = true;                mWindowAttributesChangesFlag = WindowManager.LayoutParams.EVERYTHING_CHANGED;                mAttachInfo.mRootView = view;                mAttachInfo.mScalingRequired = mTranslator != null;                mAttachInfo.mApplicationScale =                        mTranslator == null ? 1.0f : mTranslator.applicationScale;                if (panelParentView != null) {                    mAttachInfo.mPanelParentWindowToken                            = panelParentView.getApplicationWindowToken();                }                mAdded = true;                int res; /* = WindowManagerImpl.ADD_OKAY; */                // 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.                requestLayout();                if ((mWindowAttributes.inputFeatures                        & WindowManager.LayoutParams.INPUT_FEATURE_NO_INPUT_CHANNEL) == 0) {                    mInputChannel = new InputChannel();                }                mForceDecorViewVisibility = (mWindowAttributes.privateFlags                        & PRIVATE_FLAG_FORCE_DECOR_VIEW_VISIBILITY) != 0;                try {                    mOrigWindowType = mWindowAttributes.type;                    mAttachInfo.mRecomputeGlobalAttributes = true;                    collectViewAttributes();                    res = mWindowSession.addToDisplay(mWindow, mSeq, mWindowAttributes,                            getHostVisibility(), mDisplay.getDisplayId(),                            mAttachInfo.mContentInsets, mAttachInfo.mStableInsets,                            mAttachInfo.mOutsets, 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();                    }                }                if (mTranslator != null) {                    mTranslator.translateRectInScreenToAppWindow(mAttachInfo.mContentInsets);                }                mPendingOverscanInsets.set(0, 0, 0, 0);                mPendingContentInsets.set(mAttachInfo.mContentInsets);                mPendingStableInsets.set(mAttachInfo.mStableInsets);                mPendingVisibleInsets.set(0, 0, 0, 0);                mAttachInfo.mAlwaysConsumeNavBar =                        (res & WindowManagerGlobal.ADD_FLAG_ALWAYS_CONSUME_NAV_BAR) != 0;                mPendingAlwaysConsumeNavBar = mAttachInfo.mAlwaysConsumeNavBar;                if (DEBUG_LAYOUT) Log.v(mTag, "Added window " + mWindow);                if (res < WindowManagerGlobal.ADD_OKAY) {                    mAttachInfo.mRootView = null;                    mAdded = false;                    mFallbackEventHandler.setView(null);                    unscheduleTraversals();                    setAccessibilityFocus(null, null);                    switch (res) {                        case WindowManagerGlobal.ADD_BAD_APP_TOKEN:                        case WindowManagerGlobal.ADD_BAD_SUBWINDOW_TOKEN:                            throw new WindowManager.BadTokenException(                                    "Unable to add window -- token " + attrs.token                                    + " is not valid; is your activity running?");                        case WindowManagerGlobal.ADD_NOT_APP_TOKEN:                            throw new WindowManager.BadTokenException(                                    "Unable to add window -- token " + attrs.token                                    + " is not for an application");                        case WindowManagerGlobal.ADD_APP_EXITING:                            throw new WindowManager.BadTokenException(                                    "Unable to add window -- app for token " + attrs.token                                    + " is exiting");                        case WindowManagerGlobal.ADD_DUPLICATE_ADD:                            throw new WindowManager.BadTokenException(                                    "Unable to add window -- window " + mWindow                                    + " has already been added");                        case WindowManagerGlobal.ADD_STARTING_NOT_NEEDED:                            // Silently ignore -- we would have just removed it                            // right away, anyway.                            return;                        case WindowManagerGlobal.ADD_MULTIPLE_SINGLETON:                            throw new WindowManager.BadTokenException("Unable to add window "                                    + mWindow + " -- another window of type "                                    + mWindowAttributes.type + " already exists");                        case WindowManagerGlobal.ADD_PERMISSION_DENIED:                            throw new WindowManager.BadTokenException("Unable to add window "                                    + mWindow + " -- permission denied for window type "                                    + mWindowAttributes.type);                        case WindowManagerGlobal.ADD_INVALID_DISPLAY:                            throw new WindowManager.InvalidDisplayException("Unable to add window "                                    + mWindow + " -- the specified display can not be found");                        case WindowManagerGlobal.ADD_INVALID_TYPE:                            throw new WindowManager.InvalidDisplayException("Unable to add window "                                    + mWindow + " -- the specified window type "                                    + mWindowAttributes.type + " is not valid");                    }                    throw new RuntimeException(                            "Unable to add window -- unknown error code " + res);                }                if (view instanceof RootViewSurfaceTaker) {                    mInputQueueCallback =                        ((RootViewSurfaceTaker)view).willYouTakeTheInputQueue();                }                if (mInputChannel != null) {                    if (mInputQueueCallback != null) {                        mInputQueue = new InputQueue();                        mInputQueueCallback.onInputQueueCreated(mInputQueue);                    }                    mInputEventReceiver = new WindowInputEventReceiver(mInputChannel,                            Looper.myLooper());                }                view.assignParent(this);    // assignParent                mAddedTouchMode = (res & WindowManagerGlobal.ADD_FLAG_IN_TOUCH_MODE) != 0;                mAppVisible = (res & WindowManagerGlobal.ADD_FLAG_APP_VISIBLE) != 0;                if (mAccessibilityManager.isEnabled()) {                    mAccessibilityInteractionConnectionManager.ensureConnection();                }                if (view.getImportantForAccessibility() == View.IMPORTANT_FOR_ACCESSIBILITY_AUTO) {                    view.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_YES);                }                // Set up the input pipeline.                CharSequence counterSuffix = attrs.getTitle();                mSyntheticInputStage = new SyntheticInputStage();                InputStage viewPostImeStage = new ViewPostImeInputStage(mSyntheticInputStage);                InputStage nativePostImeStage = new NativePostImeInputStage(viewPostImeStage,                        "aq:native-post-ime:" + counterSuffix);                InputStage earlyPostImeStage = new EarlyPostImeInputStage(nativePostImeStage);                InputStage imeStage = new ImeInputStage(earlyPostImeStage,                        "aq:ime:" + counterSuffix);                InputStage viewPreImeStage = new ViewPreImeInputStage(imeStage);                InputStage nativePreImeStage = new NativePreImeInputStage(viewPreImeStage,                        "aq:native-pre-ime:" + counterSuffix);                mFirstInputStage = nativePreImeStage;                mFirstPostImeInputStage = earlyPostImeStage;                mPendingInputEventQueueLengthCounterName = "aq:pending:" + counterSuffix;            }        }    }

该方法首先将传进来的参数view赋值给mView,mView将是这个对象所认识的root节点,也是整个Activity的root的节点,即DecorView。

接着调用了requestLayout()方法,首次调度执行 layout,这里会触发 onAttachToWindow 和 创建 Surface方法。

接着看ViewRootImpl中requestLayout()方法:

    @Override    public void requestLayout() {        if (!mHandlingLayoutInLayoutRequest) {            checkThread();            mLayoutRequested = true;            scheduleTraversals();        }    }
该方法首先检查了是否在主线程,然后就执行了scheduleTraversals()方法。
    void scheduleTraversals() {        if (!mTraversalScheduled) {            mTraversalScheduled = true;            mTraversalBarrier = mHandler.getLooper().getQueue().postSyncBarrier();            mChoreographer.postCallback(                    Choreographer.CALLBACK_TRAVERSAL, mTraversalRunnable, null);            if (!mUnbufferedInputDispatch) {                scheduleConsumeBatchedInput();            }            notifyRendererOfFramePending();            pokeDrawLockIfNeeded();        }    }
这里需要注意的就是Runnable对象,继续往后看:
    final class TraversalRunnable implements Runnable {        @Override        public void run() {            doTraversal();        }    }    final TraversalRunnable mTraversalRunnable = new TraversalRunnable();
这个Runnable的run()方法中,调用了doTraversal()方法:
    void doTraversal() {        if (mTraversalScheduled) {            mTraversalScheduled = false;            mHandler.getLooper().getQueue().removeSyncBarrier(mTraversalBarrier);            if (mProfile) {                Debug.startMethodTracing("ViewAncestor");            }            performTraversals();            if (mProfile) {                Debug.stopMethodTracing();                mProfile = false;            }        }    }
可以看到doTraversal()方法又调用了performTraversals()方法:
    private void performTraversals() {        // cache mView since it is used so much below...        final View host = mView;        if (DBG) {            System.out.println("======================================");            System.out.println("performTraversals");            host.debug();        }        if (host == null || !mAdded)            return;        mIsInTraversal = true;        mWillDrawSoon = true;        boolean windowSizeMayChange = false;        boolean newSurface = false;        boolean surfaceChanged = false;        WindowManager.LayoutParams lp = mWindowAttributes;        int desiredWindowWidth;        int desiredWindowHeight;        final int viewVisibility = getHostVisibility();        final boolean viewVisibilityChanged = !mFirst                && (mViewVisibility != viewVisibility || mNewSurfaceNeeded);        final boolean viewUserVisibilityChanged = !mFirst &&                ((mViewVisibility == View.VISIBLE) != (viewVisibility == View.VISIBLE));        WindowManager.LayoutParams params = null;        if (mWindowAttributesChanged) {            mWindowAttributesChanged = false;            surfaceChanged = true;            params = lp;        }        CompatibilityInfo compatibilityInfo =                mDisplay.getDisplayAdjustments().getCompatibilityInfo();        if (compatibilityInfo.supportsScreen() == mLastInCompatMode) {            params = lp;            mFullRedrawNeeded = true;            mLayoutRequested = true;            if (mLastInCompatMode) {                params.privateFlags &= ~WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;                mLastInCompatMode = false;            } else {                params.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_COMPATIBLE_WINDOW;                mLastInCompatMode = true;            }        }        mWindowAttributesChangesFlag = 0;        Rect frame = mWinFrame;        if (mFirst) {            mFullRedrawNeeded = true;            mLayoutRequested = true;            if (shouldUseDisplaySize(lp)) {                // NOTE -- system code, won't try to do compat mode.                Point size = new Point();                mDisplay.getRealSize(size);                desiredWindowWidth = size.x;                desiredWindowHeight = size.y;            } else {                Configuration config = mContext.getResources().getConfiguration();                desiredWindowWidth = dipToPx(config.screenWidthDp);                desiredWindowHeight = dipToPx(config.screenHeightDp);            }            // We used to use the following condition to choose 32 bits drawing caches:            // PixelFormat.hasAlpha(lp.format) || lp.format == PixelFormat.RGBX_8888            // However, windows are now always 32 bits by default, so choose 32 bits            mAttachInfo.mUse32BitDrawingCache = true;            mAttachInfo.mHasWindowFocus = false;            mAttachInfo.mWindowVisibility = viewVisibility;            mAttachInfo.mRecomputeGlobalAttributes = false;            mLastConfiguration.setTo(host.getResources().getConfiguration());            mLastSystemUiVisibility = mAttachInfo.mSystemUiVisibility;            // Set the layout direction if it has not been set before (inherit is the default)            if (mViewLayoutDirectionInitial == View.LAYOUT_DIRECTION_INHERIT) {                host.setLayoutDirection(mLastConfiguration.getLayoutDirection());            }            host.dispatchAttachedToWindow(mAttachInfo, 0);            mAttachInfo.mTreeObserver.dispatchOnWindowAttachedChange(true);            dispatchApplyInsets(host);            //Log.i(mTag, "Screen on initialized: " + attachInfo.mKeepScreenOn);        } else {            desiredWindowWidth = frame.width();            desiredWindowHeight = frame.height();            if (desiredWindowWidth != mWidth || desiredWindowHeight != mHeight) {                if (DEBUG_ORIENTATION) Log.v(mTag, "View " + host + " resized to: " + frame);                mFullRedrawNeeded = true;                mLayoutRequested = true;                windowSizeMayChange = true;            }        }        if (viewVisibilityChanged) {            mAttachInfo.mWindowVisibility = viewVisibility;            host.dispatchWindowVisibilityChanged(viewVisibility);            if (viewUserVisibilityChanged) {                host.dispatchVisibilityAggregated(viewVisibility == View.VISIBLE);            }            if (viewVisibility != View.VISIBLE || mNewSurfaceNeeded) {                endDragResizing();                destroyHardwareResources();            }            if (viewVisibility == View.GONE) {                // After making a window gone, we will count it as being                // shown for the first time the next time it gets focus.                mHasHadWindowFocus = false;            }        }        // Non-visible windows can't hold accessibility focus.        if (mAttachInfo.mWindowVisibility != View.VISIBLE) {            host.clearAccessibilityFocus();        }        // Execute enqueued actions on every traversal in case a detached view enqueued an action        getRunQueue().executeActions(mAttachInfo.mHandler);        boolean insetsChanged = false;        boolean layoutRequested = mLayoutRequested && (!mStopped || mReportNextDraw);        if (layoutRequested) {            final Resources res = mView.getContext().getResources();            if (mFirst) {                // make sure touch mode code executes by setting cached value                // to opposite of the added touch mode.                mAttachInfo.mInTouchMode = !mAddedTouchMode;                ensureTouchModeLocally(mAddedTouchMode);            } else {                if (!mPendingOverscanInsets.equals(mAttachInfo.mOverscanInsets)) {                    insetsChanged = true;                }                if (!mPendingContentInsets.equals(mAttachInfo.mContentInsets)) {                    insetsChanged = true;                }                if (!mPendingStableInsets.equals(mAttachInfo.mStableInsets)) {                    insetsChanged = true;                }                if (!mPendingVisibleInsets.equals(mAttachInfo.mVisibleInsets)) {                    mAttachInfo.mVisibleInsets.set(mPendingVisibleInsets);                    if (DEBUG_LAYOUT) Log.v(mTag, "Visible insets changing to: "                            + mAttachInfo.mVisibleInsets);                }                if (!mPendingOutsets.equals(mAttachInfo.mOutsets)) {                    insetsChanged = true;                }                if (mPendingAlwaysConsumeNavBar != mAttachInfo.mAlwaysConsumeNavBar) {                    insetsChanged = true;                }                if (lp.width == ViewGroup.LayoutParams.WRAP_CONTENT                        || lp.height == ViewGroup.LayoutParams.WRAP_CONTENT) {                    windowSizeMayChange = true;                    if (shouldUseDisplaySize(lp)) {                        // NOTE -- system code, won't try to do compat mode.                        Point size = new Point();                        mDisplay.getRealSize(size);                        desiredWindowWidth = size.x;                        desiredWindowHeight = size.y;                    } else {                        Configuration config = res.getConfiguration();                        desiredWindowWidth = dipToPx(config.screenWidthDp);                        desiredWindowHeight = dipToPx(config.screenHeightDp);                    }                }            }            // Ask host how big it wants to be            windowSizeMayChange |= measureHierarchy(host, lp, res,                    desiredWindowWidth, desiredWindowHeight);        }        if (collectViewAttributes()) {            params = lp;        }        if (mAttachInfo.mForceReportNewAttributes) {            mAttachInfo.mForceReportNewAttributes = false;            params = lp;        }        if (mFirst || mAttachInfo.mViewVisibilityChanged) {            mAttachInfo.mViewVisibilityChanged = false;            int resizeMode = mSoftInputMode &                    WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST;            // If we are in auto resize mode, then we need to determine            // what mode to use now.            if (resizeMode == WindowManager.LayoutParams.SOFT_INPUT_ADJUST_UNSPECIFIED) {                final int N = mAttachInfo.mScrollContainers.size();                for (int i=0; i<N; i++) {                    if (mAttachInfo.mScrollContainers.get(i).isShown()) {                        resizeMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE;                    }                }                if (resizeMode == 0) {                    resizeMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN;                }                if ((lp.softInputMode &                        WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST) != resizeMode) {                    lp.softInputMode = (lp.softInputMode &                            ~WindowManager.LayoutParams.SOFT_INPUT_MASK_ADJUST) |                            resizeMode;                    params = lp;                }            }        }        if (params != null) {            if ((host.mPrivateFlags & View.PFLAG_REQUEST_TRANSPARENT_REGIONS) != 0) {                if (!PixelFormat.formatHasAlpha(params.format)) {                    params.format = PixelFormat.TRANSLUCENT;                }            }            mAttachInfo.mOverscanRequested = (params.flags                    & WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN) != 0;        }        if (mApplyInsetsRequested) {            mApplyInsetsRequested = false;            mLastOverscanRequested = mAttachInfo.mOverscanRequested;            dispatchApplyInsets(host);            if (mLayoutRequested) {                // Short-circuit catching a new layout request here, so                // we don't need to go through two layout passes when things                // change due to fitting system windows, which can happen a lot.                windowSizeMayChange |= measureHierarchy(host, lp,                        mView.getContext().getResources(),                        desiredWindowWidth, desiredWindowHeight);            }        }        if (layoutRequested) {            // Clear this now, so that if anything requests a layout in the            // rest of this function we will catch it and re-run a full            // layout pass.            mLayoutRequested = false;        }        boolean windowShouldResize = layoutRequested && windowSizeMayChange            && ((mWidth != host.getMeasuredWidth() || mHeight != host.getMeasuredHeight())                || (lp.width == ViewGroup.LayoutParams.WRAP_CONTENT &&                        frame.width() < desiredWindowWidth && frame.width() != mWidth)                || (lp.height == ViewGroup.LayoutParams.WRAP_CONTENT &&                        frame.height() < desiredWindowHeight && frame.height() != mHeight));        windowShouldResize |= mDragResizing && mResizeMode == RESIZE_MODE_FREEFORM;        // If the activity was just relaunched, it might have unfrozen the task bounds (while        // relaunching), so we need to force a call into window manager to pick up the latest        // bounds.        windowShouldResize |= mActivityRelaunched;        // Determine whether to compute insets.        // If there are no inset listeners remaining then we may still need to compute        // insets in case the old insets were non-empty and must be reset.        final boolean computesInternalInsets =                mAttachInfo.mTreeObserver.hasComputeInternalInsetsListeners()                || mAttachInfo.mHasNonEmptyGivenInternalInsets;        boolean insetsPending = false;        int relayoutResult = 0;        boolean updatedConfiguration = false;        final int surfaceGenerationId = mSurface.getGenerationId();        final boolean isViewVisible = viewVisibility == View.VISIBLE;        if (mFirst || windowShouldResize || insetsChanged ||                viewVisibilityChanged || params != null || mForceNextWindowRelayout) {            mForceNextWindowRelayout = false;            if (isViewVisible) {                // If this window is giving internal insets to the window                // manager, and it is being added or changing its visibility,                // then we want to first give the window manager "fake"                // insets to cause it to effectively ignore the content of                // the window during layout.  This avoids it briefly causing                // other windows to resize/move based on the raw frame of the                // window, waiting until we can finish laying out this window                // and get back to the window manager with the ultimately                // computed insets.                insetsPending = computesInternalInsets && (mFirst || viewVisibilityChanged);            }            if (mSurfaceHolder != null) {                mSurfaceHolder.mSurfaceLock.lock();                mDrawingAllowed = true;            }            boolean hwInitialized = false;            boolean contentInsetsChanged = false;            boolean hadSurface = mSurface.isValid();            try {                if (DEBUG_LAYOUT) {                    Log.i(mTag, "host=w:" + host.getMeasuredWidth() + ", h:" +                            host.getMeasuredHeight() + ", params=" + params);                }                if (mAttachInfo.mHardwareRenderer != null) {                    // relayoutWindow may decide to destroy mSurface. As that decision                    // happens in WindowManager service, we need to be defensive here                    // and stop using the surface in case it gets destroyed.                    if (mAttachInfo.mHardwareRenderer.pauseSurface(mSurface)) {                        // Animations were running so we need to push a frame                        // to resume them                        mDirty.set(0, 0, mWidth, mHeight);                    }                    mChoreographer.mFrameInfo.addFlags(FrameInfo.FLAG_WINDOW_LAYOUT_CHANGED);                }                relayoutResult = relayoutWindow(params, viewVisibility, insetsPending);                if (DEBUG_LAYOUT) Log.v(mTag, "relayout: frame=" + frame.toShortString()                        + " overscan=" + mPendingOverscanInsets.toShortString()                        + " content=" + mPendingContentInsets.toShortString()                        + " visible=" + mPendingVisibleInsets.toShortString()                        + " visible=" + mPendingStableInsets.toShortString()                        + " outsets=" + mPendingOutsets.toShortString()                        + " surface=" + mSurface);                if (mPendingConfiguration.seq != 0) {                    if (DEBUG_CONFIGURATION) Log.v(mTag, "Visible with new config: "                            + mPendingConfiguration);                    updateConfiguration(new Configuration(mPendingConfiguration), !mFirst);                    mPendingConfiguration.seq = 0;                    updatedConfiguration = true;                }                final boolean overscanInsetsChanged = !mPendingOverscanInsets.equals(                        mAttachInfo.mOverscanInsets);                contentInsetsChanged = !mPendingContentInsets.equals(                        mAttachInfo.mContentInsets);                final boolean visibleInsetsChanged = !mPendingVisibleInsets.equals(                        mAttachInfo.mVisibleInsets);                final boolean stableInsetsChanged = !mPendingStableInsets.equals(                        mAttachInfo.mStableInsets);                final boolean outsetsChanged = !mPendingOutsets.equals(mAttachInfo.mOutsets);                final boolean surfaceSizeChanged = (relayoutResult                        & WindowManagerGlobal.RELAYOUT_RES_SURFACE_RESIZED) != 0;                final boolean alwaysConsumeNavBarChanged =                        mPendingAlwaysConsumeNavBar != mAttachInfo.mAlwaysConsumeNavBar;                if (contentInsetsChanged) {                    mAttachInfo.mContentInsets.set(mPendingContentInsets);                    if (DEBUG_LAYOUT) Log.v(mTag, "Content insets changing to: "                            + mAttachInfo.mContentInsets);                }                if (overscanInsetsChanged) {                    mAttachInfo.mOverscanInsets.set(mPendingOverscanInsets);                    if (DEBUG_LAYOUT) Log.v(mTag, "Overscan insets changing to: "                            + mAttachInfo.mOverscanInsets);                    // Need to relayout with content insets.                    contentInsetsChanged = true;                }                if (stableInsetsChanged) {                    mAttachInfo.mStableInsets.set(mPendingStableInsets);                    if (DEBUG_LAYOUT) Log.v(mTag, "Decor insets changing to: "                            + mAttachInfo.mStableInsets);                    // Need to relayout with content insets.                    contentInsetsChanged = true;                }                if (alwaysConsumeNavBarChanged) {                    mAttachInfo.mAlwaysConsumeNavBar = mPendingAlwaysConsumeNavBar;                    contentInsetsChanged = true;                }                if (contentInsetsChanged || mLastSystemUiVisibility !=                        mAttachInfo.mSystemUiVisibility || mApplyInsetsRequested                        || mLastOverscanRequested != mAttachInfo.mOverscanRequested                        || outsetsChanged) {                    mLastSystemUiVisibility = mAttachInfo.mSystemUiVisibility;                    mLastOverscanRequested = mAttachInfo.mOverscanRequested;                    mAttachInfo.mOutsets.set(mPendingOutsets);                    mApplyInsetsRequested = false;                    dispatchApplyInsets(host);                }                if (visibleInsetsChanged) {                    mAttachInfo.mVisibleInsets.set(mPendingVisibleInsets);                    if (DEBUG_LAYOUT) Log.v(mTag, "Visible insets changing to: "                            + mAttachInfo.mVisibleInsets);                }                if (!hadSurface) {                    if (mSurface.isValid()) {                        // If we are creating a new surface, then we need to                        // completely redraw it.  Also, when we get to the                        // point of drawing it we will hold off and schedule                        // a new traversal instead.  This is so we can tell the                        // window manager about all of the windows being displayed                        // before actually drawing them, so it can display then                        // all at once.                        newSurface = true;                        mFullRedrawNeeded = true;                        mPreviousTransparentRegion.setEmpty();                        // Only initialize up-front if transparent regions are not                        // requested, otherwise defer to see if the entire window                        // will be transparent                        if (mAttachInfo.mHardwareRenderer != null) {                            try {                                hwInitialized = mAttachInfo.mHardwareRenderer.initialize(                                        mSurface);                                if (hwInitialized && (host.mPrivateFlags                                        & View.PFLAG_REQUEST_TRANSPARENT_REGIONS) == 0) {                                    // Don't pre-allocate if transparent regions                                    // are requested as they may not be needed                                    mSurface.allocateBuffers();                                }                            } catch (OutOfResourcesException e) {                                handleOutOfResourcesException(e);                                return;                            }                        }                    }                } else if (!mSurface.isValid()) {                    // If the surface has been removed, then reset the scroll                    // positions.                    if (mLastScrolledFocus != null) {                        mLastScrolledFocus.clear();                    }                    mScrollY = mCurScrollY = 0;                    if (mView instanceof RootViewSurfaceTaker) {                        ((RootViewSurfaceTaker) mView).onRootViewScrollYChanged(mCurScrollY);                    }                    if (mScroller != null) {                        mScroller.abortAnimation();                    }                    // Our surface is gone                    if (mAttachInfo.mHardwareRenderer != null &&                            mAttachInfo.mHardwareRenderer.isEnabled()) {                        mAttachInfo.mHardwareRenderer.destroy();                    }                } else if ((surfaceGenerationId != mSurface.getGenerationId()                        || surfaceSizeChanged)                        && mSurfaceHolder == null                        && mAttachInfo.mHardwareRenderer != null) {                    mFullRedrawNeeded = true;                    try {                        // Need to do updateSurface (which leads to CanvasContext::setSurface and                        // re-create the EGLSurface) if either the Surface changed (as indicated by                        // generation id), or WindowManager changed the surface size. The latter is                        // because on some chips, changing the consumer side's BufferQueue size may                        // not take effect immediately unless we create a new EGLSurface.                        // Note that frame size change doesn't always imply surface size change (eg.                        // drag resizing uses fullscreen surface), need to check surfaceSizeChanged                        // flag from WindowManager.                        mAttachInfo.mHardwareRenderer.updateSurface(mSurface);                    } catch (OutOfResourcesException e) {                        handleOutOfResourcesException(e);                        return;                    }                }                final boolean freeformResizing = (relayoutResult                        & WindowManagerGlobal.RELAYOUT_RES_DRAG_RESIZING_FREEFORM) != 0;                final boolean dockedResizing = (relayoutResult                        & WindowManagerGlobal.RELAYOUT_RES_DRAG_RESIZING_DOCKED) != 0;                final boolean dragResizing = freeformResizing || dockedResizing;                if (mDragResizing != dragResizing) {                    if (dragResizing) {                        mResizeMode = freeformResizing                                ? RESIZE_MODE_FREEFORM                                : RESIZE_MODE_DOCKED_DIVIDER;                        startDragResizing(mPendingBackDropFrame,                                mWinFrame.equals(mPendingBackDropFrame), mPendingVisibleInsets,                                mPendingStableInsets, mResizeMode);                    } else {                        // We shouldn't come here, but if we come we should end the resize.                        endDragResizing();                    }                }                if (!USE_MT_RENDERER) {                    if (dragResizing) {                        mCanvasOffsetX = mWinFrame.left;                        mCanvasOffsetY = mWinFrame.top;                    } else {                        mCanvasOffsetX = mCanvasOffsetY = 0;                    }                }            } catch (RemoteException e) {            }            if (DEBUG_ORIENTATION) Log.v(                    TAG, "Relayout returned: frame=" + frame + ", surface=" + mSurface);            mAttachInfo.mWindowLeft = frame.left;            mAttachInfo.mWindowTop = frame.top;            // !!FIXME!! This next section handles the case where we did not get the            // window size we asked for. We should avoid this by getting a maximum size from            // the window session beforehand.            if (mWidth != frame.width() || mHeight != frame.height()) {                mWidth = frame.width();                mHeight = frame.height();            }            if (mSurfaceHolder != null) {                // The app owns the surface; tell it about what is going on.                if (mSurface.isValid()) {                    // XXX .copyFrom() doesn't work!                    //mSurfaceHolder.mSurface.copyFrom(mSurface);                    mSurfaceHolder.mSurface = mSurface;                }                mSurfaceHolder.setSurfaceFrameSize(mWidth, mHeight);                mSurfaceHolder.mSurfaceLock.unlock();                if (mSurface.isValid()) {                    if (!hadSurface) {                        mSurfaceHolder.ungetCallbacks();                        mIsCreating = true;                        mSurfaceHolderCallback.surfaceCreated(mSurfaceHolder);                        SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();                        if (callbacks != null) {                            for (SurfaceHolder.Callback c : callbacks) {                                c.surfaceCreated(mSurfaceHolder);                            }                        }                        surfaceChanged = true;                    }                    if (surfaceChanged || surfaceGenerationId != mSurface.getGenerationId()) {                        mSurfaceHolderCallback.surfaceChanged(mSurfaceHolder,                                lp.format, mWidth, mHeight);                        SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();                        if (callbacks != null) {                            for (SurfaceHolder.Callback c : callbacks) {                                c.surfaceChanged(mSurfaceHolder, lp.format,                                        mWidth, mHeight);                            }                        }                    }                    mIsCreating = false;                } else if (hadSurface) {                    mSurfaceHolder.ungetCallbacks();                    SurfaceHolder.Callback callbacks[] = mSurfaceHolder.getCallbacks();                    mSurfaceHolderCallback.surfaceDestroyed(mSurfaceHolder);                    if (callbacks != null) {                        for (SurfaceHolder.Callback c : callbacks) {                            c.surfaceDestroyed(mSurfaceHolder);                        }                    }                    mSurfaceHolder.mSurfaceLock.lock();                    try {                        mSurfaceHolder.mSurface = new Surface();                    } finally {                        mSurfaceHolder.mSurfaceLock.unlock();                    }                }            }            final ThreadedRenderer hardwareRenderer = mAttachInfo.mHardwareRenderer;            if (hardwareRenderer != null && hardwareRenderer.isEnabled()) {                if (hwInitialized                        || mWidth != hardwareRenderer.getWidth()                        || mHeight != hardwareRenderer.getHeight()                        || mNeedsHwRendererSetup) {                    hardwareRenderer.setup(mWidth, mHeight, mAttachInfo,                            mWindowAttributes.surfaceInsets);                    mNeedsHwRendererSetup = false;                }            }            if (!mStopped || mReportNextDraw) {                boolean focusChangedDueToTouchMode = ensureTouchModeLocally(                        (relayoutResult&WindowManagerGlobal.RELAYOUT_RES_IN_TOUCH_MODE) != 0);                if (focusChangedDueToTouchMode || mWidth != host.getMeasuredWidth()                        || mHeight != host.getMeasuredHeight() || contentInsetsChanged ||                        updatedConfiguration) {                    int childWidthMeasureSpec = getRootMeasureSpec(mWidth, lp.width);                    int childHeightMeasureSpec = getRootMeasureSpec(mHeight, lp.height);                    if (DEBUG_LAYOUT) Log.v(mTag, "Ooops, something changed!  mWidth="                            + mWidth + " measuredWidth=" + host.getMeasuredWidth()                            + " mHeight=" + mHeight                            + " measuredHeight=" + host.getMeasuredHeight()                            + " coveredInsetsChanged=" + contentInsetsChanged);                     // Ask host how big it wants to be                    performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);  // performMeasure                    // Implementation of weights from WindowManager.LayoutParams                    // We just grow the dimensions as needed and re-measure if                    // needs be                    int width = host.getMeasuredWidth();                    int height = host.getMeasuredHeight();                    boolean measureAgain = false;                    if (lp.horizontalWeight > 0.0f) {                        width += (int) ((mWidth - width) * lp.horizontalWeight);                        childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(width,                                MeasureSpec.EXACTLY);                        measureAgain = true;                    }                    if (lp.verticalWeight > 0.0f) {                        height += (int) ((mHeight - height) * lp.verticalWeight);                        childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(height,                                MeasureSpec.EXACTLY);                        measureAgain = true;                    }                    if (measureAgain) {                        if (DEBUG_LAYOUT) Log.v(mTag,                                "And hey let's measure once more: width=" + width                                + " height=" + height);                        performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);                    }                    layoutRequested = true;                }            }        } else {            // Not the first pass and no window/insets/visibility change but the window            // may have moved and we need check that and if so to update the left and right            // in the attach info. We translate only the window frame since on window move            // the window manager tells us only for the new frame but the insets are the            // same and we do not want to translate them more than once.            maybeHandleWindowMove(frame);        }        final boolean didLayout = layoutRequested && (!mStopped || mReportNextDraw);        boolean triggerGlobalLayoutListener = didLayout                || mAttachInfo.mRecomputeGlobalAttributes;        if (didLayout) {            performLayout(lp, mWidth, mHeight);   // performLayout            // By this point all views have been sized and positioned            // We can compute the transparent area            if ((host.mPrivateFlags & View.PFLAG_REQUEST_TRANSPARENT_REGIONS) != 0) {                // start out transparent                // TODO: AVOID THAT CALL BY CACHING THE RESULT?                host.getLocationInWindow(mTmpLocation);                mTransparentRegion.set(mTmpLocation[0], mTmpLocation[1],                        mTmpLocation[0] + host.mRight - host.mLeft,                        mTmpLocation[1] + host.mBottom - host.mTop);                host.gatherTransparentRegion(mTransparentRegion);                if (mTranslator != null) {                    mTranslator.translateRegionInWindowToScreen(mTransparentRegion);                }                if (!mTransparentRegion.equals(mPreviousTransparentRegion)) {                    mPreviousTransparentRegion.set(mTransparentRegion);                    mFullRedrawNeeded = true;                    // reconfigure window manager                    try {                        mWindowSession.setTransparentRegion(mWindow, mTransparentRegion);                    } catch (RemoteException e) {                    }                }            }            if (DBG) {                System.out.println("======================================");                System.out.println("performTraversals -- after setFrame");                host.debug();            }        }        if (triggerGlobalLayoutListener) {            mAttachInfo.mRecomputeGlobalAttributes = false;            mAttachInfo.mTreeObserver.dispatchOnGlobalLayout();        }        if (computesInternalInsets) {            // Clear the original insets.            final ViewTreeObserver.InternalInsetsInfo insets = mAttachInfo.mGivenInternalInsets;            insets.reset();            // Compute new insets in place.            mAttachInfo.mTreeObserver.dispatchOnComputeInternalInsets(insets);            mAttachInfo.mHasNonEmptyGivenInternalInsets = !insets.isEmpty();            // Tell the window manager.            if (insetsPending || !mLastGivenInsets.equals(insets)) {                mLastGivenInsets.set(insets);                // Translate insets to screen coordinates if needed.                final Rect contentInsets;                final Rect visibleInsets;                final Region touchableRegion;                if (mTranslator != null) {                    contentInsets = mTranslator.getTranslatedContentInsets(insets.contentInsets);                    visibleInsets = mTranslator.getTranslatedVisibleInsets(insets.visibleInsets);                    touchableRegion = mTranslator.getTranslatedTouchableArea(insets.touchableRegion);                } else {                    contentInsets = insets.contentInsets;                    visibleInsets = insets.visibleInsets;                    touchableRegion = insets.touchableRegion;                }                try {                    mWindowSession.setInsets(mWindow, insets.mTouchableInsets,                            contentInsets, visibleInsets, touchableRegion);                } catch (RemoteException e) {                }            }        }        if (mFirst) {            // handle first focus request            if (DEBUG_INPUT_RESIZE) Log.v(mTag, "First: mView.hasFocus()="                    + mView.hasFocus());            if (mView != null) {                if (!mView.hasFocus()) {                    mView.requestFocus(View.FOCUS_FORWARD);                    if (DEBUG_INPUT_RESIZE) Log.v(mTag, "First: requested focused view="                            + mView.findFocus());                } else {                    if (DEBUG_INPUT_RESIZE) Log.v(mTag, "First: existing focused view="                            + mView.findFocus());                }            }        }        final boolean changedVisibility = (viewVisibilityChanged || mFirst) && isViewVisible;        final boolean hasWindowFocus = mAttachInfo.mHasWindowFocus && isViewVisible;        final boolean regainedFocus = hasWindowFocus && mLostWindowFocus;        if (regainedFocus) {            mLostWindowFocus = false;        } else if (!hasWindowFocus && mHadWindowFocus) {            mLostWindowFocus = true;        }        if (changedVisibility || regainedFocus) {            // Toasts are presented as notifications - don't present them as windows as well            boolean isToast = (mWindowAttributes == null) ? false                    : (mWindowAttributes.type == WindowManager.LayoutParams.TYPE_TOAST);            if (!isToast) {                host.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);            }        }        mFirst = false;        mWillDrawSoon = false;        mNewSurfaceNeeded = false;        mActivityRelaunched = false;        mViewVisibility = viewVisibility;        mHadWindowFocus = hasWindowFocus;        if (hasWindowFocus && !isInLocalFocusMode()) {            final boolean imTarget = WindowManager.LayoutParams                    .mayUseInputMethod(mWindowAttributes.flags);            if (imTarget != mLastWasImTarget) {                mLastWasImTarget = imTarget;                InputMethodManager imm = InputMethodManager.peekInstance();                if (imm != null && imTarget) {                    imm.onPreWindowFocus(mView, hasWindowFocus);                    imm.onPostWindowFocus(mView, mView.findFocus(),                            mWindowAttributes.softInputMode,                            !mHasHadWindowFocus, mWindowAttributes.flags);                }            }        }        // Remember if we must report the next draw.        if ((relayoutResult & WindowManagerGlobal.RELAYOUT_RES_FIRST_TIME) != 0) {            mReportNextDraw = true;        }        boolean cancelDraw = mAttachInfo.mTreeObserver.dispatchOnPreDraw() || !isViewVisible;        if (!cancelDraw && !newSurface) {            if (mPendingTransitions != null && mPendingTransitions.size() > 0) {                for (int i = 0; i < mPendingTransitions.size(); ++i) {                    mPendingTransitions.get(i).startChangingAnimations();                }                mPendingTransitions.clear();            }            performDraw();    // performDraw        } else {            if (isViewVisible) {                // Try again                scheduleTraversals();            } else if (mPendingTransitions != null && mPendingTransitions.size() > 0) {                for (int i = 0; i < mPendingTransitions.size(); ++i) {                    mPendingTransitions.get(i).endChangingAnimations();                }                mPendingTransitions.clear();            }        }        mIsInTraversal = false;    }

这个方法非常长,这个方法内部逻辑很复杂,但是主体逻辑很清晰。其执行的过程可简单的概括为:是否需要重新计算视图的大小(measure)、是否需要重新布局视图的位置(layout),以及是否需要重绘(Draw)。也就是我们常说的View的绘制流程。

由于内容实在太多,关于View的绘制后续再分享。

回到ViewRootImpl类的setView()方法,最后可以看到view的父亲注册为自己,于是mDecor知道了自己父亲是谁,即整个Activity设置了一个根节点,在此之前调用setContentView()只是将自己的layout布局add到PhoneWindow.mContentParent,但是mDecor并不知道自己的parent是谁,现在整个view的树形结构中有了根节点,也就是ViewRootImpl,那么requestLayout()就有效了,就可以进行后面的measure、layout、draw三步操作了。


总结

那么最后再来一个精简的总结,加深理解。

用户在Activity中调用setContentView,然后调用Window的setContentView,这时会检查DecorView是否存在,如果不存在则创建DecorView对象,然后把我们自己的 View 添加到 DecorView 中。

请点击此处输入图片描述

这里可以用一个Activity层次关系图来表示,会更加直观清晰。

请点击此处输入图片描述

如果把以上这些流程梳理通透了,那么在开发中可以为我们节省不少时间了,也便于一些框架设计,也可以方便在系统的理解上实现出来多种定制任务。而且在一些中高级开发面试的时候,也会经常被问及到这方面的内容。如果还有疑问的童鞋,欢迎留言继续讨论。


今天就先分享到这里,后续将推出更多精彩内容,欢迎一起探讨学习进步。

此文章版权为微信公众号分享达人秀(ShareExpert)——鑫鱻所有,若转载请备注出处,特此声明!

0 0
原创粉丝点击