I registered in the manifesto android:theme="@android:style/Theme.NoTitleBar.Fullscreen" to be full screen, and it hides the TitleBar, but not the bar where Home, Back, etc.
Here is the manifest itself:
<activity android:name=".ui.MainActivity" android:configChanges="orientation|screenSize|keyboardHidden" android:launchMode="singleTop" android:screenOrientation="landscape" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:windowSoftInputMode="stateAlwaysHidden"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> I tried all the FullScreen styles, it does not help, tell me please, how can I hide everything like youtube.?
