我的问题基本上在标题中,但我很好奇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);
答案 0 :(得分:1)
不,他们做同样的事情。我发现现在使用的版本更多,但他们会做同样的事情。