检测 Android 暗色模式是否开启 发表于 2020-02-16 分类于 开发 检测 Android 暗色模式是否开启: 1234private static boolean isSystemDarkModeEnabled(Context context) { return (context.getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK) == Configuration.UI_MODE_NIGHT_YES;}