调用LayoutInflater直接而不是有什么区别?

调用LayoutInflater直接而不是有什么区别?,第1张

概述我经历了一些教程,在 Android文档中,它表示在实例化时不直接访问LayoutInflater.来自Google Doc的示例: LayoutInflater inflater = (LayoutInflater)context.getSystemService (Context.LAYOUT_INFLATER_SERVICE); 我经历的教程是这样的: LayoutInflater in 我经历了一些教程,在 Android文档中,它表示在实例化时不直接访问LayoutInflater.来自Google Doc的示例:
LayoutInflater inflater = (LayoutInflater)context.getSystemService  (Context.LAYOUT_INFLATER_SERVICE);

我经历的教程是这样的:

LayoutInflater inflater = LayoutInflater.from(parent.getContext());

所以我不太明白的是除了明显不同的代码之外还有什么区别.任何解释非常感谢.我认为AndroID文档应该是我们遵循的,但我不知道是否有所作为.

解决方法 如果您打开AndroID源代码,您可以看到LayoutInflator.from方法如下所示:
/** * Obtains the LayoutInflater from the given context. */public static LayoutInflater from(Context context) {    LayoutInflater LayoutInflater =            (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);    if (LayoutInflater == null) {        throw new AssertionError("LayoutInflater not found.");    }    return LayoutInflater;}

这意味着你的问题中的两行代码做同样的事情.不知道你阅读的教程是什么,但是我没有看到任何功能的差异.使用from方法是很好的,因为它需要一点点打字,就是这样.

总结

以上是内存溢出为你收集整理的调用LayoutInflater直接而不是有什么区别?全部内容,希望文章能够帮你解决调用LayoutInflater直接而不是有什么区别?所遇到的程序开发问题。

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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1132259.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存