如何使您的通知下拉为黑暗主题?

时间:2019-04-05 04:02:09

标签: android

我尝试过

  1. 设置->显示
  2. 开发者选项->设置夜间模式

enter image description here

enter image description here


仍然,我几乎无法使Android设备在下拉通知中具有深色主题。

enter image description here


我想在下拉通知中使用深色的原因是因为我目前正在调试此问题-How to get the notification drop-down background color, and decide best text color when night Mode is enabled?

有什么主意吗?我正在使用Android Pie 9模拟器。

1 个答案:

答案 0 :(得分:0)

您可以通过Android Q(Beta)模拟器上的ADB执行此操作。同样的命令也可以在Android P上使用,但我认为它没有用于通知的深色主题。

启用夜间模式:

adb shell settings put secure ui_night_mode 2

重新启动以应用更改:

adb reboot

禁用夜间模式:

adb shell settings put secure ui_night_mode 1