gpt4 book ai didi

android - 不要在 fragment 中获取 rootLayoutContainer(Android 3.0 预览版)

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

我目前正在研究 Android 3.0 预览版的 fragment API,并构建了以下最少的代码:

我有一个 Activty,它应该嵌入 Fragment(s),目前是这样实现的:

public class Cockpit extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.cockpit);
}

public static class InfoFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment

ViewGroup infoFragmentRoot = (ViewGroup) getActivity().findViewById(
R.id.infoFragmentRoot) ;

return inflater.inflate(R.id.infoFragment, container, false);
}
}

Activity对应的布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<fragment android:name="test.android.ui.cockpit.Cockpit$InfoFragment"
android:id="@+id/infoFragment"
android:layout_weight="1"
android:layout_width="10dp"
android:layout_height="match_parent" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent" android:padding="12dp" android:id="@+id/infoFragmentRoot" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
</LinearLayout>
</fragment>

现在,我不明白为什么内部类InfoFragment中的onCreateView()中的ViewGroup容器是一个空指针,我也不明白,为什么

ViewGroup infoFragmentRoot = (ViewGroup) getActivity().findViewById(
R.id.infoFragmentRoot) ;

也返回 null。

感谢您的反馈。

最佳答案

你在这里遇到了一些问题。首先,您不想在 <fragment> 中添加标签。标签。将 fragment 标记视为占位符。 fragment 的 onCreateView() 方法负责定义 fragment 的 View 层次结构,而不是 Activity 的布局 XML 文件。不过,您可以做的是创建一个单独的布局 XML 文件作为 fragment 的布局。然后在 onCreateView() 内部,你接收传入的充气器,并执行如下操作:

    View v = inflater.inflate(R.layout.frag1, container, false);
TextView text1 = (TextView) v.findViewById(R.id.text1);
text1.setText( myTextData );
return v;

注意 inflate() 的附加参数是 false 吗? Android 稍后会负责将返回的 View 附加到您的容器。

在 fragment 获得 onActivityCreated() 回调之前,不能保证您的 Activity 的 View 层次结构存在。因此,获取 infoFragmentRoot 的尝试可能会在 onCreateView() 内部返回 null。但是我什至不确定当那个标签被埋在你的 <fragment> 里面时会发生什么。 .

在这种特殊情况下,您已将标签嵌入 Activity 的布局中,将使用标签中的其余属性调用 fragment 的 onInflate() 回调。理论上,您可以将这些属性添加到 fragment 的参数包中,然后稍后在 onCreateView() 中检索这些值(使用 setArguments() 和 getArguments())。我说理论上是因为在处理配置更改(例如,横向到纵向)的代码中似乎存在错误,导致在重建 fragment 时在 onCreateView() 之后 调用 onInflate()配置更改后。查看缺陷报告 http://code.google.com/p/android/issues/detail?id=14796 .

现在,我建议您将 fragment 的布局提取到单独的布局 XML 文件(例如 frag1.xml),然后使用我上面的代码在 onCreateView() 中扩充该布局。不要担心任何属性被传递给 onInflate()。

关于android - 不要在 fragment 中获取 rootLayoutContainer(Android 3.0 预览版),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4992241/

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