本帖最后由 liu 于 2018-12-25 17:14 编辑
merge
解决布局层级的优化,较少布局嵌套层次,提高布局加载的效率
使用方法:
activity_main.xml:
[XML] 纯文本查看 复制代码 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
android:orientation="vertical">
<include layout="@layout/layout_header" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="merge"
android:textColor="@color/white"
android:textSize="20sp" />
</LinearLayout>
layout_header.xml:[XML] 纯文本查看 复制代码 <?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:layout_width="wrap_content"
android:layout_height="50dp"
android:scaleType="fitXY"
android:src="@drawable/icon_header" />
</merge>
效果如下图:
当把有<merge>标签的布局放在<include>中的时候,就会忽视<merge>,像例子中就是由layout_header.xml中的<ImageView>取代activity_main.xml中的<include>,减少layout的嵌套
注意:<merge>标签只能作为XML布局的根标签使用
|