LayoutInflater.from(context)和context.getLayoutInflater()之间有区别吗?

时间:2016-04-06 18:08:37

标签: android xml layout-inflater android-inflate

我的问题基本上在标题中,但我很好奇context.getLayoutInflater()LayoutInflater.from(context)之间是否存在差异。例如:

View contentView = getActivity().getLayoutInflater().inflate(R.layout.some_layout, null);

View contentView = LayoutInflater.from(getActivity()).inflate(R.layout.some_layout, null);

1 个答案:

答案 0 :(得分:1)

不,他们做同样的事情。我发现现在使用的版本更多,但他们会做同样的事情。