一、首先看带三个参数的inflate方法:
public View inflate (int resource, ViewGroup root, boolean attachToRoot)
1、如果root不为null,且attachToRoot为TRUE,则会在加载的布局文件的最外层再嵌套一层root布局,这时候xml根元素的布局参数当然会起作用。
2、如果root不为null,且attachToRoot为false,则不会在加载的布局文件的最外层再嵌套一层root布局,这个root只会用于为要加载的xml的根view生成布局参数( 官方原话:If false, root is only used to create the correct subclass of LayoutParams for the root view in the XML.),
这时候xml根元素的布局参数也会起作用了!!!
3、如果root为null,则attachToRoot无论为true还是false都没意义!即xml根元素的布局参数依然不会起作用!



二、再看带两个参数的inflate方法:
public View inflate(int resource, ViewGroup root)

查看源码:

    public View inflate(int resource, ViewGroup root) {        return inflate(resource, root, root != null);    }
也就是说
1、当root不为null时,相当于上面带三个参数的inflate方法的第2种情况
2、当root为null时,相当于上面带三个参数的inflate方法的第3种情况


三、实战—————以listview来验证上面的理论
大家肯定遇到过在ListView的item布局中设置的高度没有效果的问题。
item_lv_test.xml

    

adapter的getView方法:

public View getView(int position, View convertView, ViewGroup parent) {    if (convertView == null) {        convertView = inflate(R.layout.item_lv_test, null);    }    return convertView;}
如果用上面的代码会发现设置100dp是无效的。而如果换成下面的代码就可以了。

public View getView(int position, View convertView, ViewGroup parent) {    if (convertView == null) {        convertView = inflate(R.layout.item_lv_test, parent, false);    }    return convertView;}

这里你该会想一想为什么很多需要显示View的方法中都有ViewGroup这个参数。
所以有些人会说在跟布局中设置是无效的,要再嵌套一层布局。这样是错误的,会造成布局层级增多,影响性能



参考:http://blog.csdn.net/guolin_blog/article/details/12921889

https://github.com/CharonChui/AndroidNote/blob/master/Android%E5%AD%A6%E4%B9%A0%E5%8A%A0%E5%BC%BA/LayoutInflater.inflate%E8%AF%A6%E8%A7%A3.md



更多相关文章

  1. Android之ListActivity(一):布局与数据绑定
  2. Android超精准计步器开发-Dylan计步
  3. 关于Android(安卓)Force Close 出现的原因 以及解决方法
  4. MVP+RxJava+Dagger打造的Android(安卓)Album
  5. android三种菜单介绍
  6. [Android] 问题记录 - Cupcake & Donut, Sdcard 正确使用方法
  7. android下播放器视频输出方法总结
  8. 第3章 UI开发的点点滴滴
  9. Android系列之网络(三)----使用HttpClient发送HTTP请求(分别通过GET

随机推荐

  1. 如何使用带有“IF”条件的按钮改变DIV的
  2. jQuery返回一个没有逗号的字符串的前5个
  3. 超好用的一个JQUERY分页器
  4. Jssor滑块不适用于AngularJS
  5. 如何使用javascript/jquery获取文本框数
  6. ajax防止重复提交
  7. JQuery实现的 checkbox 全选、反选。
  8. 执行Django数据库值的计算:视图。py或Jav
  9. 通过AJAX加载内容和预加载图像?
  10. 使用JQuery从外部文件中通过id选择器获取