我的问题是创建 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;
}

关于android - 有效地创建一个 LayoutInflater,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11934578/

10-10 19:39