Home
last modified time | relevance | path

Searched refs:newSystemUiFlags (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DLauncher.java505 int newSystemUiFlags = oldSystemUiFlags; in activateLightSystemBars() local
508 newSystemUiFlags |= View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR; in activateLightSystemBars()
511 newSystemUiFlags |= SYSTEM_UI_FLAG_LIGHT_NAV_BAR; in activateLightSystemBars()
515 newSystemUiFlags &= ~(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); in activateLightSystemBars()
518 newSystemUiFlags &= ~(SYSTEM_UI_FLAG_LIGHT_NAV_BAR); in activateLightSystemBars()
522 if (newSystemUiFlags != oldSystemUiFlags) { in activateLightSystemBars()
523 getWindow().getDecorView().setSystemUiVisibility(newSystemUiFlags); in activateLightSystemBars()