文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

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

2022-06-06 05:46

关注

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 等)。

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

您可能感兴趣的文章:自定义Adapter并通过布局泵LayoutInflater抓取layout模板编辑每一个item实现思路基于Android LayoutInflater的使用介绍Android开发之获取LayoutInflater对象的方法总结Android LayoutInflater加载布局详解及实例代码Android中使用LayoutInflater要注意的一些坑Android布局加载之LayoutInflater示例详解Android LayoutInflater.inflate()详解及分析Android LayoutInflater.inflate源码分析Android开发中LayoutInflater用法详解Android中LayoutInflater.inflater()的正确打开方式


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯