ViewRootImpl的perfromTraversals方法
Posted 呼啸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ViewRootImpl的perfromTraversals方法相关的知识,希望对你有一定的参考价值。
在前面我们说过,将DecorView加载到Window中,是通过ViewRootImpl的setView方法进行的。ViewRootlImpl还有一个方法performTraversals,这个方法使得ViewTree开启了View的工作流程。
private void performTraversals()
...
if(!mStopped)
int childWidthMeasureSpec = getRootMeasureSpec(mWidth,lp.width);
int childHeightMeasureSpec = getRootMeasureSpec(mHeight,lp.height);
performMeasure(lp,childWidthMeasureSpec ,childHeightMeasureSpec );
if(didLayout)
performLayout(lp,desiredWindowWidth,desiredWindowHeight);
..
if(!cancelDraw && !newSureface)
if(!skipDraw || mReportNextDraw)
if(mPendingTransition != null && mPendingTransitions.size > 0)
for(int i=0; i< mPendingTransitions.size;++i)
mPendingTransitions.get(i).startChangingAimations();
mPendingTransitions.clear();
performDraw();
...
可以看到,这里主要执行了三个方法,分别是performMeasure,performLayout和performDraw,在其方法的内部又会分别调用View的measure,layout和draw方法。需要注意的是,在performMeasure方法中需要传入两个参数,分别是childWidthMeasure和childHeightMesureSpec。如果我们想了解这两个参数,就需要了解MeasureSpec。
以上是关于ViewRootImpl的perfromTraversals方法的主要内容,如果未能解决你的问题,请参考以下文章
Android 12 Window ViewRootImpl Activity的关系
Android UICanvas 画布 ⑥ ( Canvas 绘图源码分析 | ViewRootImpl#draw 方法源码 | ViewRootImpl#drawSoftware 方法源码 )