两者之间有什么区别吗?

  • inflater = (LayoutInflater) LayoutInflater.from(context);
  • inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  • 最佳答案

    正如您通过检查the LayoutInflater source code所看到的,目前还没有。 from()将抛出Exception而不是返回null,但是它们是相同的。

    就个人而言,我大多数时候都使用getLayoutInflater()

    关于android - 使用上下文获取LayoutInflater,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14022094/

    10-09 13:00