当没有活动时如何访问窗口?

发布于 2024-12-07 13:22:25 字数 115 浏览 0 评论 0原文

我想访问 Window 类,以便可以设置手机上的屏幕亮度。问题是我想要执行此操作的班级不是一个活动。是否可以在不进行活动的情况下做到这一点?我有一个上下文和一个内容解析器,如果有帮助的话。

提前致谢!

I want to access the Window class so I can set the screen brightness on my phone. The problem is that the class I want to do this from is not an activity. Is it possible to do this without being an activity? I have a context and a content resolver, if that helps.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请你别敷衍 2024-12-14 13:22:25

这里你有两个选择。

  1. 启动一个新的透明Activity,调整Window和系统设置的亮度值,然后调用finish() 活动。在某些情况下,无论您使用什么标志,这都会窃取用户的焦点。

  2. 使用Dialog和标志WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY创建持久透明的系统范围覆盖。这可能会导致奇怪的问题,例如阻止应用程序的安装。

换句话说,没有干净的方法可以做到这一点。

You have two options here.

  1. Start a new transparent Activity, adjust the brightness value (of both the Window and system settings), then call finish() on the Activity. This will steal focus from the user in some cases, no matter what flags you use.

  2. Create a persistent transparent system-wide overlay using a Dialog and the flag WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY. This can cause odd issues like blocking the installation of apps.

In other words, there's no clean way of doing it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文