有效地创建LayoutInflater

时间:2012-08-13 12:48:58

标签: android android-context android-inflate

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

之间有什么区别吗?
LayoutInflater inflater = LayoutInflater.from(context);

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

哪种解决方案更好?其他解决方案也欢迎。

感谢。

1 个答案:

答案 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;
}