返回介绍

2 获取 LayoutInflater 的三种方式:

发布于 2024-12-23 22:04:07 字数 1973 浏览 0 评论 0 收藏 0

  1. LayoutInflater inflater = getLayoutInflater(); //调用 Activity 的 getLayoutInflater()
  2. LayoutInflater inflater = LayoutInflater.from(context);
  3. LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

但是,这三种方式本质上还是一样的:

1. getLayoutInflater() 调用的还是 Activity 中的方法:

  public LayoutInflater getLayoutInflater() {
    return getWindow().getLayoutInflater();
  }

其中 Window 是一个抽象类,它 唯一 实现类是 PhoneWindow

com/android/internal/policyPhoneWindow.java

	public PhoneWindow(Context context) {
  	super(context);
  	mLayoutInflater = LayoutInflater.from(context);
		}
	/**
   * Return a LayoutInflater instance that can be used to inflate XML view layout
   * resources for use in this Window.
   *
   * @return LayoutInflater The shared LayoutInflater.
   */
  @Override
  public LayoutInflater getLayoutInflater() {
    return mLayoutInflater;
  }

可以看到,通过· ActivitygetLayoutInflater() 最终调用的还是第二种方法。

2.通过 LayoutInflater.from(context); 获取 LayoutInflater 对象。

android/view/LayoutInflater.java

	/**
   * Obtains the LayoutInflater from the given context.
   */
  public static LayoutInflater from(Context context) {
		//通过获取系统服务的方式获取到 LayoutInflater 实例对象
    LayoutInflater LayoutInflater =
        (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    if (LayoutInflater == null) {
      throw new AssertionError("LayoutInflater not found.");
    }
    return LayoutInflater;
  }

以上两种方法,最终还是调用了 context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) 获取 LayoutInflater 实例对象。

最终:不管以什么样的方式获取到 LayoutInflater 对象,最终都是 通过系统服务来获取实例对象

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文