禁用/启用通知 LED

发布于 2024-09-11 01:39:50 字数 104 浏览 3 评论 0原文

是否可以通过编程方式禁用和启用 Android 设备上的 LED 指示灯?我指的并不是像通知中那样打开和关闭它。我在 api 中没有看到任何可以这样做的东西。我猜如果可能的话,这是特定于硬件的。

Is it possible to programmatically disable and enable the led indicator light on an Android device? I am not referring to just turning it on and off as in a notification. I did not see anything in the api that would do so. I am guessing this is hardware specific if it is possible at all.

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

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

发布评论

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

评论(2

┈┾☆殇 2024-09-18 01:39:50

是的,当然有办法...

android.provider.Settings.System.putInt(getContentResolver(),
            "notification_light_pulse", 1);

1 - 指示开启状态

0 - 指示关闭状态

Yea sure there is a way...

android.provider.Settings.System.putInt(getContentResolver(),
            "notification_light_pulse", 1);

1 - indicate on state

0 - indicate off state

满身野味 2024-09-18 01:39:50

除了 Notification 类之外,我还没有看到任何用于处理 LED 的 API。

I have not seen any APIs for dealing with the LEDs other than the Notification class.

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