Android日/夜模式。 UiModeManafer.getNightMode

时间:2018-01-08 11:37:21

标签: android themes android-night-mode

Android是否提供任何原生方式来知道该设备是否处于夜间模式或不适用于第三方应用程序?

我正在开发app以分别在日落和日出时在app中实现启用/禁用夜间模式。

 UiModeManager uiManager = (UiModeManager) getSystemService(Context.UI_MODE_SERVICE);
    if (isNightMode) {
        uiManager.enableCarMode(0);
        uiManager.setNightMode(UiModeManager.MODE_NIGHT_YES);
    } else {
        uiManager.disableCarMode(0);
        uiManager.setNightMode(UiModeManager.MODE_NIGHT_NO);
    }

UiModeManager uiManager = (UiModeManager) getSystemService(Context.UI_MODE_SERVICE);
    if (nightMode) {
        uiManager.enableCarMode(0);
        uiManager.setNightMode(UiModeManager.MODE_NIGHT_YES);
    } else {
        uiManager.disableCarMode(0);
        uiManager.setNightMode(UiModeManager.MODE_NIGHT_NO);
    }

但是这不能回答应用程序如何知道现在是时候显示夜间模式了?

提前致谢。非常感谢任何帮助。

0 个答案:

没有答案