gpt4 book ai didi

android - 关于 inflater.inflate Android 文档的混淆

转载 作者:太空宇宙 更新时间:2023-11-03 12:31:43 29 4
gpt4 key购买 nike

我正在研究此链接中的 fragment :http://developer.android.com/guide/components/fragments.html

有一段代码如下:

public static class ExampleFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.example_fragment, container, false);
}

我对 attachToRoot 参数感到困惑,所以我在 Stack Overflow 上查找了一些帮助并找到了类似问题的好答案。所以我的理解是,如果你将它设置为 true, fragment 就会附加到 Activity 的根布局,并从那里派生它的布局参数。如果它为 false,它将简单地返回膨胀布局的根,并像 fragment 的独立 View 一样工作(从传入的容器中派生布局参数)。

现在,我进一步阅读了有关上述示例的 attachToRoot 的文档:

A boolean indicating whether the inflated layout should be attached to the ViewGroup (the second parameter) during inflation. (In this case, this is false because the system is already inserting the inflated layout into the container—passing true would create a redundant view group in the final layout.)

我没有得到最后一个括号语句,它说它应该是错误的,因为我们已经将布局插入到容器中。我们已经在没有 attachToRoot 的情况下插入容器是什么意思?如果参数为真,最终布局将如何具有冗余 View 组。详细说明这部分的示例将有很大帮助。谢谢。

最佳答案

我通常不回答自己的问题,但在对此进行更多研究后,我认为这可能会对其他人有所帮助。虽然 Marcin 的回答是正确的,但我只是回答得更详细一些。

根据代码:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.example_fragment, container, false);
}

第二个参数 container 是一个带有 id fragment_container 的框架布局, Activity 使用它来将 fragment 添加到它的布局中。

现在,如果我们深入研究 LayoutInflater 类的 inflate 方法,这就是代码(我只是突出显示代码的相关部分而不是整个部分):

// The view that would be returned from this method.
View result = root;

// Temp is the root view that was found in the xml.
final View temp = createViewFromTag(root, name, attrs, false);

首先,它从提供的根创建一个临时 View 。

如果attachToRoot 为真,它会这样做:

if (root != null && attachToRoot) {
root.addView(temp, params);
}

它将上面创建的临时 View 添加到 Root View (即容器)。

如果 attachToRoot 为假,它会这样做:

if (root == null || !attachToRoot) {
result = temp;
}

很明显,如果 attachToRoot 为 true,它会在向其添加临时 View ( Root View 在本例中的 example_fragment 中))。

如果 attachToRoot 为 false,它只返回 fragment xml 的根,即容器参数仅用于获取 fragment Root View 的 layoutParams(因为它没有根,所以它需要来自某个地方的参数)。

在上面的例子中出现了 true 的问题,因为返回值是 root (添加了 View 临时的 fragment_container,默认情况下 fragment_container 已经有一个父级。)。现在,如果您尝试执行 fragment 事务,您正在尝试将 subview fragment_container(已经有一个父 View )添加到另一个 xml(您定义的要将 fragment 添加到的框架布局)。

因此,Android 抛出以下异常:

if (child.getParent() != null) {
throw new IllegalStateException("The specified child already has a parent. " +
"You must call removeView() on the child's parent first.");
}

将其设置为 true 并返回时的问题是返回的 View 已经有一个父 View ,因此不能在其他地方使用。其他方式,您可以在 onCreateView(可能是 LinearLayout)中创建一个单独的 View 组,将参数设置为 true,然后返回 View 。然后它将正常工作,因为 View 组将没有现有的父级。

这是我对上述问题的理解,可能我理解有误,请Android高手指正。

关于android - 关于 inflater.inflate Android 文档的混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31854605/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com