无法解析膨胀(int)

Unable to resolve inflate(int)

所以我试图在我的 activity 中扩充布局,但我一直收到此错误 "Cannot resolve method inflate(int)"

  LayoutInflater layoutInflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  View error = layoutInflater.inflate(R.layout.error_internet_connection);

我做错了什么?

没有方法inflate(int)。可用的方法是 inflate(int, ViewGroup)inflate(int, ViewGroup, boolean)

改变

  View error = layoutInflater.inflate(R.layout.error_internet_connection);

 View error = layoutInflater.inflate(R.layout.error_internet_connection, null);

Here 你可以找到文档