-
ViewRootImpl类代码解读
查看全部 -
ViewRootImpl 对象的创建
root = ViewRootImpl(view.getContext(), display);
查看全部 -
ViewRootImpl是管理每一View的,是负责与远程的ActivityManagerServer进行交互的
查看全部 -
WindowManagerGlobal中创建了ViewRootImpl 对象root
查看全部 -
WindowManagerGlobal的addVIew方法
查看全部 -
WindowManagerGlobal 类是具体实现对Window的管理
查看全部 -
WindowManagerImpl是WindowManager的真实实现类
查看全部 -
调用Activity的onResume方法后View并没有立即被显示在屏幕上
而是执行到mWindow.addView(decor)时
查看全部 -
ViewManager接口中的方法有3个:
addView
updateViewLayout
removeView
查看全部 -
WindowManager 接口,继承与ViewManager接口
查看全部 -
Activity的performResume()方法通过mInstrumentation.callActivityOnResume(this)方法调用到Activity的onResume()方法
查看全部 -
handleResumeActivity 的performResumeActivity
查看全部 -
mH当中的handleResumeActivity方法处理ActivityManagerService返送的消息
查看全部 -
handleResumeActivity功能图片
查看全部 -
DecorView 继承自FrameLayout的View
查看全部
举报