Bootstrap

Activity时会调用setContentView()时,流程分析

当我们加载一个布局的时候会调用setContentView();
setContentView会调用getWindow.setContentView();
这个getWindow最终最返回一个mWindow.这mWindow指的到底是谁呢?
我们在activity的attach()方法中找到这个mWindow = new PhoneView(this);
phoneView中根布局是DecorView。这个Decorview是继承FramLayout的,
DecorView分为上下两部分titleView和ContentView。
我们平时写的xml就在ContentView中。

;