简说 


安卓在加载视图的时候,无论根节点是线性布局还是相对布局,系统都会在上一层添加一个<FrameLayout.>,也就是说任何形式的布局都会被包含在framelayout布局中



减少视图层级<merge />

    <merge/>标签在UI的结构优化中起着非常重要的作用,它可以删减多余的层级,优化UI。<merge/>多用于替换FrameLayout或者当一个布局包含另一个时,<merge/>标签消除视图层次结构中多余的视图组。例如你的主布局文件是垂直布局,引入了一个垂直布局的include,这是如果include布局使用的LinearLayout就没意义了,使用的话反而减慢你的UI表现。这时可以使用<merge/>标签优化。


<pre name="code" class="html"><pre name="code" class="html"><?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">
    
    
<include layout="@layout/progress_overlay"></include>

</LinearLayout>


 
 

progress_overlay.xml文件中 

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="工a"/>

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="fdshfdhfhs"/>

</merge>

Android merge优化UI_Android开发


现在,当你添加该布局文件时(使用<include />标签),系统忽略<merge />节点并且直接添加两个Button。更多<merge />