3

我正在尝试创建一个白日梦应用程序,但似乎找不到任何关于在我的 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()”或等效函数,因此这可能吗,我该怎么做?

谢谢

4

2 回答 2

1

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

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

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

但是您必须注意,如果您的片段依赖于附加到一个Activity(例如调用getResources(),或需要getActivity()返回非 null),它必须isAdded()酌情检查以避免IllegalStateExceptions 和 null 引用。另请注意,您负责调用适当的生命周期方法(即onDestroyView()等)。

于 2013-12-08T08:23:28.237 回答
0

我不认为你能做到这一点。DreamService 是一项服务。它没有 FragmentManager 的概念。

于 2013-04-07T02:13:59.477 回答