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 App UI 选择亮模式.. 在我的应用程序中,背景为白色,文本颜色为黑色,但在某些设备中启用了暗模式,则背景显示为黑色,文本颜色为也黑。我们如何强制 android 应用程序进入光照模式
将这行代码粘贴到 Application 类或 Splash 类中
(您可以在打开应用程序时首先启动的任何类中编写它)
AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);