#层级优化
<merge/>标签在UI的结构优化中起着非常重要的作用,它可以删减多余的层级,优化UI。 它多用于替换FrameLayout或者当一个布局包含另一个时,标签消除视图层次结构中多余的视图组。例如你的主布局文件是垂直布局,引入了一个垂直布局的include,这是如果include布局使用的LinearLayout就没意义了,使用的话反而减慢你的UI表现。这时可以使用标签优化。
<pre><code>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="添加"
/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="删除"
/>
</merge>
...
网友评论