【android】LayoutInflater.inflate方法的详解及xml根元素的布局参数不起作用的问题

(转载)http://blog.csdn.net/u011494050/article/details/42555139



一、首先看带三个参数的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)

查看源码:

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


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

[java]  view plain copy
  1. "http://schemas.android.com/apk/res/android"  
  2.     android:layout_width="match_parent"  
  3.     android:layout_height="100dip"  
  4.     android:gravity="center_vertical"  
  5.     android:orientation="horizontal">  
  6.     
  7.         android:layout_width="wrap_content"  
  8.         android:layout_height="wrap_content"  
  9.         android:text="test" />  
  10.   

adapter的getView方法:

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

[java]  view plain copy
  1. public View getView(int position, View convertView, ViewGroup parent) {  
  2.     if (convertView == null) {  
  3.         convertView = inflate(R.layout.item_lv_test, parent, false);  
  4.     }  
  5.     return convertView;  
  6. }  

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



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

https://github.com/CharonChui/AndroidNote



//-----------------------------------------------------------------------------------------------




    

        



	private LinearLayout popLayout2;
	private LinearLayout test_layout;


			saomiaoview = inflater.inflate(R.layout.sao_miao_child_menu, popLayout2, false);
			saomiaochildLayout = (LinearLayout) saomiaoview.findViewById(R.id.child_layout);

			test_layout.addView(saomiaochildLayout);

这里的test_layout布局是match_parent,发现这里的width和height起作用了,但是layout_gravity="center"不起作用,

saomiaoview位置在整个屏幕的顶部居中,而并不是屏幕居中。

android:layout_width="100dp"
android:layout_height="100dp"
android:layout_gravity="center"
【android】LayoutInflater.inflate方法的详解及xml根元素的布局参数不起作用的问题_第1张图片

当去掉android:layout_gravity="center"属性之后,可以看到显示的效果。

【android】LayoutInflater.inflate方法的详解及xml根元素的布局参数不起作用的问题_第2张图片


总结:

(1)inflater.inflate(resid, view, false), 方式的时候layout_gravity属性貌似不起作用。

(2)layout_width和layout_height起作用了。

你可能感兴趣的:(Android学习)