我的问题是创建LayoutInflater
实例的最佳方法是什么?
LayoutInflater inflater = LayoutInflater.from(context);
和
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
哪种解决方案更好?其他解决方案也欢迎。
感谢。
答案 0 :(得分:10)
如果您检查了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;
}