-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,352
  • 21
  • 80
  • 110
Arroz
  • 113
  • 9

1 Answers1

2

try this

requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                        WindowManager.LayoutParams.FLAG_FULLSCREEN);
Pallavi Tapkir
  • 727
  • 5
  • 24