Searched defs:UI_MODE_NIGHT_MASK (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/content/res/
H A DConfiguration.java187 public static final int UI_MODE_NIGHT_MASK = 0x30; field in class:Configuration
199 * <p>The {@link #UI_MODE_NIGHT_MASK} defines whether the screen
386 if ((delta.uiMode&UI_MODE_NIGHT_MASK) != UI_MODE_NIGHT_UNDEFINED) {
387 uiMode = (uiMode&~UI_MODE_NIGHT_MASK)
388 | (delta.uiMode&UI_MODE_NIGHT_MASK);

Completed in 34 milliseconds