Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以通过编程方式禁用和启用 Android 设备上的 LED 指示灯?我不是指像通知中那样打开和关闭它。我在 api 中没有看到任何可以这样做的东西。如果可能的话,我猜这是特定于硬件的。
Yea sure there is a way...
android.provider.Settings.System.putInt(getContentResolver(), "notification_light_pulse", 1);
1 - indicate on state 0 - indicate off state
除了类之外,我还没有看到任何用于处理 LED 的 API Notification。
Notification