I am trying to hide the status bar. I have tried the following things. This is for phones. I realize tablets can be different. It does hide the status bar when the layout has a bottom Tab. any ideas?
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
In the Manifest.XML
I have added the above code.
And in the onCreate()
I have added the followingin the right place:
requestWindowFeature(Window.FEATURE_NO_TITLE);
// hide statusbar of Android
// could also be done later
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);