且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

检测Android设备主题(深色还是浅色)

更新时间:2023-01-27 17:44:06

int currentNightMode = getContext().getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK;  
switch (currentNightMode) {
    case Configuration.UI_MODE_NIGHT_NO:
        // Night mode is not active, we're using the light theme
        break;
    case Configuration.UI_MODE_NIGHT_YES:
        // Night mode is active, we're using dark theme
        break;
}