一、首先看带三个参数的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)
查看源码:
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
1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2. "match_parent"
3. "100dip"
4. "center_vertical"
5. "horizontal">
6. <TextView
7. "wrap_content"
8. "wrap_content"
9. "test" />
10. </LinearLayout>
adapter的getView方法:
1. public View getView(int position, View convertView, ViewGroup parent) {
2. if (convertView == null) {
3. null);
4. }
5. return convertView;
6. }
如果用上面的代码会发现设置100dp是无效的。而如果换成下面的代码就可以了。
1. public View getView(int position, View convertView, ViewGroup parent) {
2. if (convertView == null) {
3. false);
4. }
5. return convertView;
6. }
这里你该会想一想为什么很多需要显示View的方法中都有ViewGroup这个参数。
所以有些人会说在跟布局中设置是无效的,要再嵌套一层布局。这样是错误的,会造成布局层级增多,影响性能
参考:
https://github.com/CharonChui/AndroidNote
//-----------------------------------------------------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/child_layout"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#FFFFFF"
android:layout_gravity="center"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/test1"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:background="@drawable/btn_selector"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:text="进度查询"
android:textColor="#000000"
android:textSize="16sp" />
<View
android:layout_width="wrap_content"
android:layout_height="1px"
android:layout_alignLeft="@id/test1"
android:layout_alignRight="@id/test1"
android:layout_below="@id/test1"
android:background="#E4E4E4" />
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/test3"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:background="@drawable/btn_selector"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:text="使用帮助"
android:textColor="#000000"
android:textSize="16sp" />
<View
android:layout_width="wrap_content"
android:layout_height="1px"
android:layout_alignLeft="@id/test3"
android:layout_alignRight="@id/test3"
android:layout_below="@id/test3"
android:background="#E4E4E4" />
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<Button
android:id="@+id/test2"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:background="@drawable/btn_selector"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:text="联系我们"
android:textColor="#000000"
android:textSize="16sp" />
<View
android:layout_width="wrap_content"
android:layout_height="1px"
android:layout_alignLeft="@id/test2"
android:layout_alignRight="@id/test2"
android:layout_below="@id/test2"
android:background="#E4E4E4" />
</RelativeLayout>
</LinearLayout>
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:layout_gravity="center"属性之后,可以看到显示的效果。
总结:
(1)inflater.inflate(resid, view, false), 方式的时候layout_gravity属性貌似不起作用。
(2)layout_width和layout_height起作用了。