四、DecorView 的结构图

DecorView 的结构图

1. 当某个 View 添加到布局中后

//得到 DecorView, DecorView是 FrameLayout 
ViewGroup decorView = view.getRootView(); //这里的View是被添加到页面中的View
ViewGroup decorView = getWindow().getDecorView();

//得到Content, content是 FrameLayout 
ViewGroup content = decorView.findViewById(android.R.id.content);

//得到我们自己设置的布局,可能是 各种各样的ViewGroup,也可能是一个View
ViewGroup layout = content.getChildAt(0);

2. 当某个 View 未添加到布局中

值得注意的是,如果一个View并没有添加到布局中显示出来, view.getRootView()得到的是它最顶层的布局(XML的根布局),而不是 DecorView. 例如

//example.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rootView"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize" />
  
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" >
            <TextView
                android:id="@+id/text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" /> 
        </FrameLayout>

    </LinearLayout>
</RelativeLayout >


//java
final View view = View.inflate(this, R.layout.example, null);
final RelativeLayout rootView=view.findViewById(R.id.rootView);
final TextView tv=view.findViewById(R.id.text);
//View在代码中通过View.inflate实例化,没有添加到显示界面前
System.out.println(" tv的根视图 RelativeLayout 的Id =" + rootView.getId());
System.out.println(" tv没有添加到显示界面前,  tv.getRootView().getId() =" + tv.getRootView().getId());

//Log
tv的根视图 RelativeLayout 的Id = -100
tv没有添加到显示界面前,  tv.getRootView().getId() =  -100

可以看出两者Id一样,验证了上面的结论.

参考: android获取根View的方法

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 174,401评论 25 709
  • 用两张图告诉你,为什么你的 App 会卡顿? - Android - 掘金 Cover 有什么料? 从这篇文章中你...
    hw1212阅读 13,108评论 2 59
  • 本笔记整理自: https://www.gitbook.com/book/tom510230/android_...
    01_小小鱼_01阅读 1,076评论 0 4
  • zhenzi//作 站立,或者是蹲下, 别總这樣委屈弓著。 如同一只熱水中的蝦子, 用洪荒之力作垂死掙扎。 站立,...
    JiJizhenzi阅读 331评论 0 4
  • 人生何止一场高考! 烂包光景中时时有考试,跋山涉水中处处有考场; 哪一时不熬煎?哪一处不凶险? 每次提笔都使着真性...
    油菜花_SIMON阅读 752评论 0 0