这两者有什么区别吗?
inflater = (LayoutInflater) LayoutInflater.from(context);inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
这两者有什么区别吗?
inflater = (LayoutInflater) LayoutInflater.from(context);inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);目前还没有,正如您通过查看源代码所看到的LayoutInflater那样。from()将抛出一个Exception而不是返回null,但除此之外它们是相同的。
就个人而言,我使用的getLayoutInflater()次数最多。