• Android DecorView浅析


    摘要 一、DecorView为整个Window界面的最顶层View。 二、DecorView只有一个子元素为LinearLayout。代表整个Window界面,包含通知栏,标题栏,内容显示栏三块区域。 三、LinearLayout里有两个FrameLayout子元素。 (20)为标题栏显示界面。只有一个TextView显示应用

    (请发邮件到 freeget.one@gmail.com  获得最新翻强软件。)

    一、DecorView为整个Window界面的最顶层View。

    二、DecorView只有一个子元素为LinearLayout。代表整个Window界面,包含通知栏,标题栏,内容显示栏三块区域。

    三、LinearLayout里有两个FrameLayout子元素。

      (20)为标题栏显示界面。只有一个TextView显示应用的名称。也可以自定义标题栏,载入后的自定义标题栏View将加入FrameLayout中。

      (21)为内容栏显示界面。就是setContentView()方法载入的布局界面,加入其中。

    工具查看:

    1.

    下图为SDK中tools文件夹下hierarchyviewer bat 查看ViewTree的结果:

    (此时未替换标题栏)

     

    2.替换标题栏后ViewTree的变化:

    绿色区域发生了变化,改变为了载入的title.xml文件的布局。

    title.xml内容为:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    <?xml version="1.0"encoding="utf-8"?>
    <LinearLayout
      android:layout_width="fill_parent"
      android:layout_height="fill_parent">
      <ImageView
        android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:src="@drawable/icon2"/>
      <TextView
          android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/title_tv"
      android:textColor="#FFFFFF"
      android:textStyle="bold"
      android:text="@string/app_name"
      />
    </LinearLayout>


     

    通知栏绘制在1号LinearLayout中,还是绘制在DecorView中还有待探究。

    -----------------

    ApiDemo中app包下CustomTitle中自定义TitleBar代码段

    1
    2
    3
    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    setContentView(R.layout.custom_title);
    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_1);


     

    载入自定义titleBar后如何查找其中元素呢,其实还是findViewById就可以了,因为载入的自定义布局已经在DecorView树中了

    而findViewById是怎么回事呢。

    activity中findViewById源码

    1
    2
    3
    public View findViewById(int id) {
        returngetWindow().findViewById(id);
    }


    调用了getWindow().findViewById,getWindow返回的是Window点入查看window中源码

    1
    2
    3
    public View findViewById(int id) {
        returngetDecorView().findViewById(id);
    }


    所以最终是从DecorView最顶层开始搜索的

  • 相关阅读:
    第十五章:Spring Boot 与 开发热部署
    第一章:(1)分布式基础理论
    第一章:(4)Dubbo 案例 HelloWorld
    第一章:(2)Dubbo核心概念
    第十四章:(3)Spring Boot 与 分布式 之 SpringCloud
    web安全测试AppScan扫描工具
    Cheatsheet: 2013 02.01 ~ 02.15
    Cheatsheet: 2013 04.17 ~ 04.30
    Cheatsheet: 2013 02.16 ~ 02.28
    Cheatsheet: 2013 01.21 ~ 01.31
  • 原文地址:https://www.cnblogs.com/ldq2016/p/6671501.html
Copyright © 2020-2023  润新知