我如何 运行 Android 梦想服务作为 Activity(或在其中)?

How do I run an Android Dream Service as (or within) an Activity?

我有一个功能完美的 DreamService,我想在我的主 activity 中使用它以及一个额外的按钮,以便用户可以访问设置(Android TV 似乎缺少 daydream 设置据我所知图标)。

有没有一种简单的方法可以做到这一点,专门避免代码重复?

当然,只需将您为服务创建的视图放入 activity 中即可。确保您的视图可以在不直接依赖服务的情况下工作。

您可以像这样调用 DayDream -

Intent intentDream = new Intent(Intent.ACTION_MAIN);
intentDream.setClassName("com.android.systemui", "com.android.systemui.Somnambulator");
startActivity(intentDream);

希望对您有所帮助。