在include某个布局的时候,被include的布局顶部使用merge布局可以有效减少布局嵌套,如果是替换LinearLayout等其他布局更是有效提高性能
tools:parentTag="LinearLayout" 和 tools:orientation="horizontal" 都是让android studio预览的时候可以以LinearLayout形式观看
<merge 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"
tools:parentTag="LinearLayout"
tools:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some text"
android:textSize="20sp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some other text"/>
</merge>