Change “Pulse notification light” / trackball light setting on Android (Nexus One only?)

前端 未结 1 1649
情深已故
情深已故 2021-01-06 14:14

On the Nexus One (at least in 2.1-update1, and I think in 2.1), there is a setting under Sound & Display: \"Pulse notification light\". This doesn\'t seem to be present

1条回答
  •  隐瞒了意图╮
    2021-01-06 14:28

    I know I'm going to die painfully for using an undocumented API (or rather, undocumented system setting name), but here is the magic line:

    android.provider.Settings.System.putInt(context.getContentResolver(),
            "notification_light_pulse", on ? 1 : 0);
    

    Found using sqlite3 on my own device.

    Here is this solution in a convenient Locale plugin: http://chris.boyle.name/projects/ptlp

    0 讨论(0)
提交回复
热议问题