Android getViewById和getLayoutInflater().inflate()的详解及比较

 更新时间:2016年11月22日 10:48:01   作者:Mungo  
这篇文章主要介绍了Android getViewById和getLayoutInflater().inflate()的详解及比较的相关资料,这里对这两种方法进行了详细的对比,对于开始学习Android的朋友使用这两种方法是个很好的资料,需要的朋友可以参考下

Android getViewById和getLayoutInflater().inflate()的详解及比较

               由于本人刚刚学习Android 对于getViewById和getLayoutInflater().inflate()的方法该如何使用不知如何分别,这里就上网查下资料整理下,大家可以看下。

LayoutInflater

要明白这个问题首先要知道什么是LayoutInflater。根据Android的官方API解释:

Instantiates a layout XML file into its corresponding View objects.

由此可知,这个类是用来根据xml布局文件来实例化相应的View的。

getLayoutInflater()

根据API的文档解释,定义后面紧接着一句:

It is never used directly.

由此可知,LayoutInflater不能直接使用,即不能使用new来初始化。同时根据定义可以看出在实际开发中LayoutInflater这个类还是非常有用的,比如对于一个没有被载入或者想要动态载入的界面,都需要使用LayoutInflater.inflate() 来载入。

既然很有用,又不能直接初始化,肯定会有其他的方式获得LayoutInflater的实例。一般获得 LayoutInflater 有实例的三种方式:

 1. LayoutInflater inflater = getLayoutInflater(); //调用Activity的getLayoutInflater()
 2. LayoutInflater localinflater =(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
 3. LayoutInflater inflater = LayoutInflater.from(context);

如果去看源码的话,其实这三种方式本质是相同的:

Activity 的 getLayoutInflater() 方法是调用 PhoneWindow 的getLayoutInflater()方法。

public PhoneWindow(Context context) { 
  super(context); 
  mLayoutInflater = LayoutInflater.from(context); 
}

可以看出它其实是调用 LayoutInflater.from(context)。

LayoutInflater.from(context):

public static LayoutInflater from(Context context) { 
  LayoutInflater LayoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
  if (LayoutInflater == null) { 
    thrownew AssertionError("LayoutInflater not found."); 
  } 
  return LayoutInflater; 
}

可以看出它其实调用 context.getSystemService()。

结论:所以这三种方式最终本质是都是调用的Context.getSystemService()。

inflate()

inflate 方法 通过 sdk 的 API文档可知:

Inflate a new view hierarchy from the specified xml resource.

即inflater() 是用来找 xml 布局文件,并且实例化成View 对象。

LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE); 
View view = inflater.inflate(R.layout.custom, (ViewGroup)findViewById(R.id.test)); 
EditText editText = (EditText)view.findViewById(R.id.content);

getViewById()

getViewById()应该熟悉的,刚接触android时最先接触到的几个方法里肯定有他。findViewById()是找xml布局文件下的具体widget控件(如Button、TextView等)。

最后说一句,对于一个没有被载入或者想要动态载入的界面,都需要使用LayoutInflater.inflate(),getLayoutInflater()返回LayoutInflater实例,所以,可以说getLayoutInflater().inflater() 是用来找 res/layout下的 xml 布局文件,并且实例化;findViewById() 是找具体 xml 布局文件中的具体 widget 控件(如:Button、TextView 等)。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

相关文章

  • android实现简单的矩形裁剪框

    android实现简单的矩形裁剪框

    这篇文章主要为大家详细介绍了android实现简单的矩形裁剪框,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-05-05
  • Android实现简单计时器功能

    Android实现简单计时器功能

    这篇文章主要为大家详细介绍了Android实现简单计时器功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-10-10
  • Android Okhttp断点续传面试深入解析

    Android Okhttp断点续传面试深入解析

    这篇文章主要给大家介绍了关于Android Okhttp断点续传面试的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Android具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
    2019-06-06
  • android viewpager实现轮播效果

    android viewpager实现轮播效果

    这篇文章主要为大家详细介绍了android viewpager实现轮播效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-06-06
  • Android TextView自定义数字滚动动画

    Android TextView自定义数字滚动动画

    这篇文章主要为大家详细介绍了Android TextView自定义数字滚动动画,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-04-04
  • 实例讲解Android自定义控件

    实例讲解Android自定义控件

    本篇文章通过实例给大家讲解了Android自定义控件的使用技巧和需要注意的地方,跟着学习参考下吧。
    2017-12-12
  • OpenGL ES正交投影实现方法(三)

    OpenGL ES正交投影实现方法(三)

    这篇文章主要为大家详细介绍了OpenGL ES正交投影的实现方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-05-05
  • Kotlin之在Gradle中无参(no-arg)编译器插件的使用详解

    Kotlin之在Gradle中无参(no-arg)编译器插件的使用详解

    这篇文章主要介绍了Kotlin之在Gradle中无参(no-arg)编译器插件的使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-11-11
  • Android实现dialog的3D翻转示例

    Android实现dialog的3D翻转示例

    这篇文章主要介绍了Android实现dialog的3D翻转示例,非常具有实用价值,需要的朋友可以参考下
    2017-08-08
  • Android实现语音识别代码

    Android实现语音识别代码

    语音识别在android上使用起来很方便也很简单.但是有个前提条件,就是android机器上必须预先安装google的语音搜索工具,今天我们就来详细探讨下
    2015-06-06

最新评论