I want to make a fullscreen app, so question is how to enable a immersive mode. I tried this:
v.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
| View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
| View.SYSTEM_UI_FLAG_FULLSCREEN
| View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY);
But the problem is that touching anywhere on the screen the navigation buttons appear, and what I am looking for is a full-time full-screen, I want that the only way to exit from the app will be turning off the tablet (it is for the menu of a restaurant).
Thanks in advance.