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?
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?
try this
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);