我正在尝试创建一个白日梦应用程序,似乎无法在DreamService类中找到有关使用片段的任何文档。

我的意图是在XML文件中使用框架:

    <FrameLayout
      android:id="@+id/content_frag"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true"
      />


然后使用FragmentManager将我的片段添加到框架中:

    public void onAttachedToWindow( )
{
    setContentView(R.layout.daydream);

    getFragmentManager().beginTransaction().replace(R.id.content_frag, new ContentFragment(), "ContentFragment")
        .commit();

    super.onAttachedToWindow();
}


DreamService中似乎没有“ getFragmentManager()”或等效函数,因此这可能吗,我该怎么做?

谢谢

最佳答案

可以将片段与DreamService结合使用。尽管只是因为可以,但这并不意味着您应该这样做,因为有些警告必须使您的片段必须知道它通常在(Activity)和DreamService中使用。

以下代码段有效(已在设备上经过测试):

MyFragment fragment = new MyFragment();
View view = fragment.onCreateView(LayoutInflater.fromContext(this), null, null);
setContentView(view);


但是必须注意,如果您的片段依赖于附加到Activity(例如,调用getResources(),或者需要getActivity()返回非空值),则它必须适当地检查isAdded()以避免IllegalStateException s和null引用。另外请注意,您有责任调用适当的生命周期方法(即onDestroyView()等)。

10-06 10:17