getDecorView()和peekDecorView()有什么区别,
他们返回什么

最佳答案

getDecoreView:


  检索顶级窗口装饰视图(包含标准
  窗框/装饰以及其中的客户内容),
  可以作为窗口添加到窗口管理器。


Return : the top-level window decor view.


peekDecorView():


  检索当前的装饰视图,但前提是已经存在
  创建否则返回null。


Return :  the top-level window decor or null.

10-02 07:18