LayoutInflater.from(context) 和 context.getLayoutInflater() 有区别吗?
Is there a difference between LayoutInflater.from(context) and context.getLayoutInflater()?
我的问题基本上在标题中,但我很好奇 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);
不,他们做同样的事情。最近看from版本用的比较多,但是他们也会做同样的事情
我的问题基本上在标题中,但我很好奇 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);
不,他们做同样的事情。最近看from版本用的比较多,但是他们也会做同样的事情