待读

Window、WindowManager、activity、de

2017-11-25  本文已影响22人  AndroidTony

1 概述

android中视图的呈现,用户只需要定义好activity的layout.xml文件,在Activity的onCreate()回调当中调用setContentView()就可以了。在这其中系统给我们做了大量的工作,涉及到多个类。其中,用户能够看到的就是Activity和View类,其实View并不是直接附在Activity上面,而是附在Window上。另外,还涉及到ViewRoot、WindowManager这几个类。

2 几个重要的类

2.1 View

2.2 DecorView

视图的顶层View。

2.2 Window

一个Window表示一个窗口

2.2 Activity

2.3 WindowManager

WindowManager是一个接口,而且它继承与ViewManager,作为窗口管理器,它的操作放在实现类WindowManagerImpl里面。而真正的实现则是在WindowManagerGlobal里面。


WindowManager.png

2.4 ViewRootImpl

ViewRoot可以被理解为“View树的管理者”。

3 关系

3.1 Activity什么时候创建?

答:handleLaunchActivity ->performLaunchActivity中创建Activity

private Activity performLaunchActivity(ActivityClientRecord r, Intent customIntent) {
        ...
        Activity activity = null;
        try { //Activity通过ClassLoader创建出来
            java.lang.ClassLoader cl = r.packageInfo.getClassLoader();
            activity = mInstrumentation.newActivity(
                    cl, component.getClassName(), r.intent);  
        } ...
        try {
            //创建Application
            Application app = r.packageInfo.makeApplication(false, mInstrumentation);
            ...
            if (activity != null) {
                //创建Activity所需的Context
                Context appContext = createBaseContextForActivity(r, activity);
                ...
                //将Context与Activity进行绑定
                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);
                ...
                    //调用activity.oncreate
                    mInstrumentation.callActivityOnCreate(activity, r.state, r.persistentState);
                ...
                     //调用Activity的onstart方法
                     activity.performStart();
                           //调用activitu的OnRestoreInstanceState方法进行Window数据恢复 
             mInstrumentation.callActivityOnRestoreInstanceState(activity, r.state,
                                    r.persistentState);
                ...
        return activity;
    }

3.2 Activity什么时候和Window绑定?

答:在activity启动过程的performLaunchActivity()方法中。
在ActivityThread中内部类H继承自Handler,在接收到LAUNCH_ACTIVITY的消息后,调用handleLaunchActivity(),其中调用performLaunchActivity()和handleResumeActivity(),performLaunchActivity()中就会调用Actitivy的attach()方法,在其中初始化PhoneWindow以及WindowManager。

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) {
        //ContextImpl的绑定
        attachBaseContext(context);
        //在当前Activity创建Window
        mWindow = new PhoneWindow(this);
        mWindow.setCallback(this);
        mWindow.setOnWindowDismissedCallback(this);
        mWindow.getLayoutInflater().setPrivateFactory(this);
        ...
        //为Window设置WindowManager
        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());
        }
        //创建完后通过getWindowManager就可以得到WindowManager实例
        mWindowManager = mWindow.getWindowManager();
        mCurrentConfig = config;
    }

3.3 什么时候初始化DecorView,并将用户视图挂载到DecorView上面?

答:在Activity的OnCreate()回调之后,用户调用setContentView()的方法中。


DecorView初始化过程.png

3.4 什么时候初始化ViewRootImpl?

答:在handleResumeActivity()中调用WindowManageImpl的addView(),从而调用WindowManagerGlobal的addView()方法时初始化。


ViewRootImpl的初始化的时机.png WindowManagerGlobal中ViewRootImpl的初始化.png

3.5 handleResumeActivity做了些什么工作?

handleResumeActivity.png

1 调用Activity的performResume,从而回调OnResume
2 设置DecorView不可见,初始化ViewRootImpl,并将ViewRootImpl与DecorView相关联,调用requestLayout()进行测量布局绘制三部曲。
3 设置DecorView可见,将内容显示在屏幕上。

4 整个过程

整体流程.png
上一篇下一篇

猜你喜欢

热点阅读