-1

What is the best way to hide permanent system bar on android? I want a full-screen app without system bar. All that I got so far is hide the bar, but if I swipe up it appears.

Any suggestion?

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
Arroz
  • 113
  • 1
  • 9

1 Answers1

2

try this

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                        WindowManager.LayoutParams.FLAG_FULLSCREEN);
Pallavi Tapkir
  • 781
  • 7
  • 28