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

 更新时间:2017年09月17日 10:05:59   作者:xiaobojava  
这篇文章主要介绍了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> 
itemGroup = (LinearLayout) findViewById(R.id.ll_item_Group); 

 这个作为itemGroup对象。

<LinearLayout xmlns:android="http://schemas.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> 

 这个作为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, itemGroup, true); 

测试结果是:

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://schemas.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> 

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

View v = inflater.inflate(R.layout.el_marge, itemGroup, true); 

 否则报错:<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中FileProvider的各种场景应用详解

    Android中FileProvider的各种场景应用详解

    这篇文章主要为大家介绍了Android中FileProvider的各种场景应用详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-09-09
  • Android 使用 DowanloadManager 实现下载并获取下载进度实例代码

    Android 使用 DowanloadManager 实现下载并获取下载进度实例代码

    这篇文章主要介绍了Android 使用 DowanloadManager 实现下载并获取下载进度实例代码的相关资料,需要的朋友可以参考下
    2017-06-06
  • Android控件FlowLikeView实现点赞动画

    Android控件FlowLikeView实现点赞动画

    这篇文章主要为大家详细介绍了一个点赞动画的优雅控件FlowLikeView,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-06-06
  • android计算器简单实现代码

    android计算器简单实现代码

    这篇文章主要为大家详细介绍了android计算器的简单实现代码,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-03-03
  • Android实现图片反转、翻转、旋转、放大和缩小

    Android实现图片反转、翻转、旋转、放大和缩小

    这篇文章主要介绍了Android实现图片反转、翻转、旋转、放大和缩小的相关代码,需要的朋友可以参考下
    2015-09-09
  • android app在后台运行弹出弹窗

    android app在后台运行弹出弹窗

    这篇文章主要为大家介绍了android app在后台运行弹出弹窗,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-11-11
  • Flutter BuildContext功能使用详解

    Flutter BuildContext功能使用详解

    这篇文章主要为大家介绍了Flutter BuildContext功能详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-12-12
  • 解决Android Studio 3.0 butterknife:7.0.1配置的问题

    解决Android Studio 3.0 butterknife:7.0.1配置的问题

    下面小编就为大家分享一篇解决Android Studio 3.0 butterknife:7.0.1配置的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2017-12-12
  • android 9PNG图片制作过程(图文介绍)

    android 9PNG图片制作过程(图文介绍)

    我们想要是有些图片可以拉伸而不失真多好啊,这时候我们就要想起android为我们提供的9.png格式的图片了,9.png格式的图片是安卓平台上新创的一种被拉伸却不失真的玩意
    2013-01-01
  • 基于Android实现自动滚动布局

    基于Android实现自动滚动布局

    在平时的开发中,有时会碰到这样的场景,设计上布局的内容会比较紧凑,导致部分机型上某些布局中的内容显示不完全,或者在数据内容多的情况下,单行无法显示所有内容,这里给大家简单介绍下布局自动滚动的一种实现方式,感兴趣的朋友可以参考下
    2023-12-12

最新评论