我试过
尽管如此,我还是很难让Android设备在下拉式通知中有黑暗的主题。
我希望在下拉通知中显示深色的原因,因为我目前正在调试这个问题-- How to get the notification drop-down background color, and decide best text color when night Mode is enabled?
有什么想法吗?我正在使用Android Pie 9仿真器。
发布于 2019-04-08 09:24:41
你可以在Android (Beta)模拟器上通过亚行实现这一点。同样的命令也适用于Android,但我认为它没有用于通知的黑色主题。
启用夜间模式:
adb shell settings put secure ui_night_mode 2
重新启动以应用更改:
adb reboot
禁用夜间模式:
adb shell settings put secure ui_night_mode 1
https://stackoverflow.com/questions/55528062
复制相似问题