Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不确定我是否理解两者之间的关系。据我了解 ViewRootImpl 持有 mView ,它是每个窗口的主视图,而 DecorView 也是每个窗口的主视图?
事实证明 ViewRootImpl 中的 mView 是 DecorView 所以这回答了我自己的问题
ViewRootImpl 是视图层次结构的顶部,它实现了 View 和 WindowManager 之间所需的协议。
DecorView 是 Window 视图层次结构的真正根。它既包含“装饰”(即窗口的标题,也包含内容视图。