分析View的第一次绘制是在哪里完成的

先分析Activity的setContentView()

    private Window mWindow;

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

    public Window getWindow() {
        return mWindow;
    }

Activity的setContentView()调用了Window的setContentView()方法 , 接着跟进

    public abstract void setContentView(@LayoutRes int layoutResID);

The only existing implementation of this abstract class is android.view.PhoneWindow
Window是个抽象类 , 根据Window类的注释可以知道 , Window类的子类只有一个叫做PhoneWindow , 那么看一下PhoneWindow的setContentView()方法 .


    ViewGroup mContentParent;

    /**省略过后的代码*/
    @Override
    public void setContentView(int layoutResID) {
        if (mContentParent == null) {
            //先看下面的installDecor()方法的作用
            installDecor();
        } else if (!hasFeature(FEATURE_CONTENT_TRANSITIONS)) {
            mContentParent.removeAllViews();
        }

        //我们既然知道了mContentParent就是DecorView中的一个FrameLayout , 那么这段代码就是
        //解析我们传入的layoutResID之后 , 并添加到mContentParent当中
        //如果有不熟悉inflate()方法的 , 可以自己去看一下 , 他最后会调用rInflate()方法后 , 也是
        //执行addView操作来添加子View
        mLayoutInflater.inflate(layoutResID, mContentParent);

    }
private void installDecor() {
    
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值