我的问题是创建LayoutInflater
实例的最佳方法是什么?有没有区别
LayoutInflater inflater = LayoutInflater.from(context);
和
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
哪个是更好的解决方案?也欢迎其他解决方案。
谢谢。
我的问题是创建LayoutInflater
实例的最佳方法是什么?有没有区别
LayoutInflater inflater = LayoutInflater.from(context);
和
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
哪个是更好的解决方案?也欢迎其他解决方案。
谢谢。
如果您检查了 LayoutInflater.java 源文件,您会发现。
/**
* Obtains the LayoutInflater from the given context.
*/
public static LayoutInflater from(Context context) {
LayoutInflater LayoutInflater =
(LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (LayoutInflater == null) {
throw new AssertionError("LayoutInflater not found.");
}
return LayoutInflater;
}