Android禁用暗黑模式

1,563 阅读1分钟

Android应用禁用暗黑模式的方式

1 代码中禁用

AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO)
  1. 在style.xml中加入下行
<item name="android:forceDarkAllowed" tools:targetApi="q">false</item>