Search code examples
javaandroidfullscreennavigationbar

Hiding navigation bar android


How to hide navigation bar in android and also from which android version?

I want to make the app fullscreen. No navigation bar will be shown while the app is running.

Please give me a detail about this..Thanks..


Solution

  • Try this code:

       getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                        WindowManager.LayoutParams.FLAG_FULLSCREEN);