标签:blog protected 图形 height ack tool com post inf
<RelativeLayout 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" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="merge标签使用" /> </RelativeLayout>
package com.example.merge; import android.app.Activity; import android.os.Bundle; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }
<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" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="merge标签使用" /> </merge>
某些时候,自己定义可重用的布局包括了过多的层级标签,比方我们
比如:这种话。使用<include>包括上面的布局的时候。系统会自己主动忽略merge层级。而把两个button直接放置与include平级
小白:什么情况考虑使用Merge标签?
小黑:一种是向上面的样例一样。子视图不须要指定不论什么针对父视图的布局属性,样例中TextView只须要直接加入到父视图上用于显示即可。
第二种是假如须要在LinearLayout里面嵌入一个布局(或者视图),而恰恰这个布局(或者视图)的根节点也是LinearLayout,这样就多了一层没实用的嵌套,无疑这样仅仅会拖慢程序速度。而这个时候假设我们使用merge根标签就能够避免那样的问题,官方文档Android
Layout Tricks #3: Optimize by merging 中的样例演示的就是这样的情况。
当Inflate以<merge />开头的布局文件时。必须指定一个父ViewGroup,而且必须设定attachToRoot为true。
标签:blog protected 图形 height ack tool com post inf
原文地址:http://www.cnblogs.com/slgkaifa/p/6958645.html