當前位置: 首頁>>代碼示例>>Java>>正文


Java UiModeManager.MODE_NIGHT_YES屬性代碼示例

本文整理匯總了Java中android.app.UiModeManager.MODE_NIGHT_YES屬性的典型用法代碼示例。如果您正苦於以下問題:Java UiModeManager.MODE_NIGHT_YES屬性的具體用法?Java UiModeManager.MODE_NIGHT_YES怎麽用?Java UiModeManager.MODE_NIGHT_YES使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在android.app.UiModeManager的用法示例。


在下文中一共展示了UiModeManager.MODE_NIGHT_YES屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: mapNightModeToYesNo

@BinaryNightMode
private int mapNightModeToYesNo(@NightMode final int mode) {
    switch (mode) {
        case MODE_NIGHT_AUTO:
            return getTwilightManager().isNight() ? MODE_NIGHT_YES : MODE_NIGHT_NO;
        case MODE_NIGHT_FOLLOW_SYSTEM:
            final UiModeManager uiModeManager = (UiModeManager)
                    mContext.getSystemService(Context.UI_MODE_SERVICE);
            switch (uiModeManager.getNightMode()) {
                case UiModeManager.MODE_NIGHT_YES:
                    return MODE_NIGHT_YES;
                case UiModeManager.MODE_NIGHT_AUTO:
                    return MODE_NIGHT_AUTO;
                case UiModeManager.MODE_NIGHT_NO:
                default:
                    return MODE_NIGHT_NO;
            }
        case MODE_NIGHT_YES:
            return MODE_NIGHT_YES;
        case MODE_NIGHT_NO:
        default:
            return MODE_NIGHT_NO;
    }
}
 
開發者ID:GigigoGreenLabs,項目名稱:permissionsModule,代碼行數:24,代碼來源:AppCompatDelegateImplV14.java

示例2: onResume

@Override
protected void onResume() {
    Log.d(AnotherRSS.TAG, "onResume");
    AnotherRSS.withGui = true;
    new DbExpunge().execute();

    SharedPreferences mPreferences = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
    boolean night = mPreferences.getBoolean("nightmode_use", false);
    if (night) {
        int startH = mPreferences.getInt("nightmode_use_start", AnotherRSS.Config.DEFAULT_NIGHT_START);
        int stopH = mPreferences.getInt("nightmode_use_stop", AnotherRSS.Config.DEFAULT_NIGHT_STOP);
        if (AnotherRSS.inTimeSpan(startH, stopH) && umm.getNightMode() != UiModeManager.MODE_NIGHT_YES) {
            umm.setNightMode(UiModeManager.MODE_NIGHT_YES);
            AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
        }
        if (!AnotherRSS.inTimeSpan(startH, stopH) && umm.getNightMode() != UiModeManager.MODE_NIGHT_NO) {
            umm.setNightMode(UiModeManager.MODE_NIGHT_NO);
            AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
        }
    } else {
        if (umm.getNightMode() == UiModeManager.MODE_NIGHT_YES) {
            umm.setNightMode(UiModeManager.MODE_NIGHT_NO);
            AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
        }
    }
    super.onResume();
}
 
開發者ID:no-go,項目名稱:AnotherRSS,代碼行數:27,代碼來源:MainActivity.java

示例3: onResume

@Override
protected void onResume() {
    Log.d(ViboraApp.TAG, "onResume");
    ViboraApp.withGui = true;
    new DbExpunge().execute();

    SharedPreferences mPreferences = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
    boolean night = mPreferences.getBoolean("nightmode_use", false);
    if (night) {
        int startH = mPreferences.getInt("nightmode_use_start", ViboraApp.Config.DEFAULT_NIGHT_START);
        int stopH = mPreferences.getInt("nightmode_use_stop", ViboraApp.Config.DEFAULT_NIGHT_STOP);
        if (ViboraApp.inTimeSpan(startH, stopH) && umm.getNightMode() != UiModeManager.MODE_NIGHT_YES) {
            umm.setNightMode(UiModeManager.MODE_NIGHT_YES);
            AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES);
        }
        if (!ViboraApp.inTimeSpan(startH, stopH) && umm.getNightMode() != UiModeManager.MODE_NIGHT_NO) {
            umm.setNightMode(UiModeManager.MODE_NIGHT_NO);
            AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
        }
    } else {
        if (umm.getNightMode() == UiModeManager.MODE_NIGHT_YES) {
            umm.setNightMode(UiModeManager.MODE_NIGHT_NO);
            AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO);
        }
    }
    super.onResume();
}
 
開發者ID:no-go,項目名稱:ViboraFeed,代碼行數:27,代碼來源:MainActivity.java


注:本文中的android.app.UiModeManager.MODE_NIGHT_YES屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。