Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Android 中LayoutInflater.inflate()方法的介绍大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

Android 中LayoutInflater.inflate()方法的介绍

最近一直想弄明白LayoutInflater对象的inflate方法用法,今天做了实例。

<LinearLayout 
    android:id="@+id/ll_item_Group" 
    android:layout_width="match_parent" 
    android:layout_height="200dp" 
    android:BACkground="#FF0000" 
    android:orientation="vertical" > 
  </LinearLayout> 
@H_450_9@
itemGroup = (LinearLayout) findViewById(R.id.ll_item_Group); @H_450_9@

 这个作为itemGroup对象。

<LinearLayout xmlns:android="http://scheR_150_11845@as.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:orientation="vertical" > 
 
  <LinearLayout 
    android:id="@+id/view_content" 
    android:layout_width="match_parent" 
    android:layout_height="100dp" 
    android:BACkground="#4169E1" 
    android:orientation="horizontal" > 
  </LinearLayout> 
 
  <RelativeLayout 
    android:id="@+id/view_todo" 
    android:layout_width="100dp" 
    android:layout_height="match_parent" 
    android:BACkground="#00008B" > 
  </RelativeLayout> 
 
</LinearLayout> 
@H_450_9@

 这个作为include引用的view。测试代码如下:(inflater是LayoutInflater对象的实例,获取方法是:inflater = LayoutInflater.from(this),其它两种方法自己百度)

View v1 = inflater.inflate(R.layout.el_include,null); 
View v3 = inflater.inflate(R.layout.el_include,itemGroup,falsE); 
     
View v2 = inflater.inflate(R.layout.el_include,itemGroup); 
View v4 = inflater.inflate(R.layout.el_include,truE); 
@H_450_9@

测试结果是:

1、V1和V3在Activity里显示效果一样,都是itemGroup原来的内容,V1和V3都是R.layout.el_include里的View对象。

2、V2和V4在Activity里显示效果一样,都是itemGroup添加R.layout.el_include里的内容之后的。V2和V4对象都是加了R.layout.el_include的itemGroup。

V2和V4在Activity里显示效果一样说明itemGroup没有改变!

V2和V4在Activity里显示效果一样说明itemGroup发生了改变,都是将R.layout.el_include里的内容添加到了itemGroup之后的View 

那么merge和include的区别是:

include所引用的就是一个独立的View,而merge引用的View必须放到一个ViewGroup中。如下例: 



<merge xmlns:android="http://scheR_150_11845@as.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" > 
 
  <LinearLayout 
    android:id="@+id/view_content" 
    android:layout_width="match_parent" 
    android:layout_height="100dp" 
    android:BACkground="#4169E1" 
    android:orientation="horizontal" > 
  </LinearLayout> 
 
  <RelativeLayout 
    android:id="@+id/view_todo" 
    android:layout_width="100dp" 
    android:layout_height="match_parent" 
    android:BACkground="#800080" > 
  </RelativeLayout> 
 
</merge> 

@H_450_9@

 R.layout.el_marge 引用必须是这样的

View v = inflater.inflate(R.layout.el_marge,truE); @H_450_9@

 否则报错:<merge /> can be used only with a valid ViewGroup root and attachToRoot=true

 也就是说:merge是为了减少include里的根ViewGroup,那么inflate的marge必须放到ViewGroup中。 

网上也有老说到marge和framelayout,其实我觉得没有联系。就是R.layout.el_marge若不添加一个ViewGroup中的它里面的元素而已规则和FrameLayout一样。

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持

大佬总结

以上是大佬教程为你收集整理的Android 中LayoutInflater.inflate()方法的介绍全部内容,希望文章能够帮你解决Android 中LayoutInflater.inflate()方法的介绍所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: