7

我的问题是创建LayoutInflater实例的最佳方法是什么?有没有区别

LayoutInflater inflater = LayoutInflater.from(context);

LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

哪个是更好的解决方案?也欢迎其他解决方案。

谢谢。

4

1 回答 1

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;
}
于 2012-08-13T13:04:04.400 回答