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
, getViewById
getViewById与
inflater.inflate、inflater.inflate报错、inflater.inflate参数、menuinflater.inflate、getviewbyid,以便于您获取更多的相关知识。

时间: 2024-11-02 13:13:00

Android getViewById和getLayoutInflater().inflate()的详解及比较_Android的相关文章

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

Android getViewById和getLayoutInflater().inflate()的详解及比较 由于本人刚刚学习Android 对于getViewById和getLayoutInflater().inflate()的方法该如何使用不知如何分别,这里就上网查下资料整理下,大家可以看下. LayoutInflater 要明白这个问题首先要知道什么是LayoutInflater.根据Android的官方API解释: Instantiates a layout XML file into

Android Service服务不被停止详解及实现_Android

Android Service服务一直运行:                最近有个项目需求是后台一直运行Service,但是一般都是可以手动停止的,这里就提供一个方法让Android Service服务一直运行,大家看下. 1.设置->应用->运行中->停止->杀死service 这样可以在service的onDestroy()方法中重启service public void onDestroy() { Intent service = new Intent(this, MySe

android之SeekBar控件用法详解_Android

MainActivity.java package com.example.mars_2400_seekbar; import android.support.v7.app.ActionBarActivity; import android.support.v7.app.ActionBar; import android.support.v4.app.Fragment; import android.app.Activity; import android.os.Bundle; import a

android之RatingBar控件用法详解_Android

MainActivity.java package com.example.mars_2500_ratingbar; import android.support.v7.app.ActionBarActivity; import android.support.v7.app.ActionBar; import android.support.v4.app.Fragment; import android.app.Activity; import android.os.Bundle; import

Android中XUtils3框架使用方法详解(一)_Android

xUtils简介 xUtils 包含了很多实用的android工具. xUtils 支持大文件上传,更全面的http请求协议支持(10种谓词),拥有更加灵活的ORM,更多的事件注解支持且不受混淆影响... xUitls 最低兼容android 2.2 (api level 8) 今天给大家带来XUtils3的基本介绍,本文章的案例都是基于XUtils3的API语法进行的演示.相信大家对这个框架也都了解过, 下面简单介绍下XUtils3的一些基本知识. XUtils3一共有4大功能:注解模块,网络

Android中XUtils3框架使用方法详解(一)

xUtils简介 xUtils 包含了很多实用的android工具. xUtils 支持大文件上传,更全面的http请求协议支持(10种谓词),拥有更加灵活的ORM,更多的事件注解支持且不受混淆影响... xUitls 最低兼容android 2.2 (api level 8) 今天给大家带来XUtils3的基本介绍,本文章的案例都是基于XUtils3的API语法进行的演示.相信大家对这个框架也都了解过, 下面简单介绍下XUtils3的一些基本知识. XUtils3一共有4大功能:注解模块,网络

android之SeekBar控件用法详解

MainActivity.java package com.example.mars_2400_seekbar; import android.support.v7.app.ActionBarActivity; import android.support.v7.app.ActionBar; import android.support.v4.app.Fragment; import android.app.Activity; import android.os.Bundle; import a

android之RatingBar控件用法详解

MainActivity.java package com.example.mars_2500_ratingbar; import android.support.v7.app.ActionBarActivity; import android.support.v7.app.ActionBar; import android.support.v4.app.Fragment; import android.app.Activity; import android.os.Bundle; import

Android ListView之EfficientAdapte的使用详解

Android ListView之EfficientAdapte的使用详解 在做Android手机应用开发时, ListView是一个非常常用的控件.如何更新的使用它呢?其实SDK中的例子已经非常的完整了,并且能满足大多数的需要. 如果大家刚开始学习ListView,我建议大家还是直接先看官方的例子好了,这样大家会学到更好的写法以及养成更好的习惯. 下面就以EfficientAdapter为例,看看官网例子是如何使用ListView的: 请大家格外注意getView的书写方法,大家可能从网上也能