I call
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION)
when my app starts to make my app able to displa
Android 4.4 (API Level 19) introduces a new SYSTEM_UI_FLAG_IMMERSIVE
flag for setSystemUiVisibility()
that lets your app go truly "full screen." This flag, when combined with the SYSTEM_UI_FLAG_HIDE_NAVIGATION
and SYSTEM_UI_FLAG_FULLSCREEN
flags, hides the navigation and status bars and lets your app capture all touch events on the screen.