How do I hide only the navigation bar in an Android app made in Unity?
I've already tried Screen.fullScreen = false, but that shows both the status bar and the navigation bar over the content.
I ended up using the script posted in the link below. http://zehfernando.com/2015/unity-tidbits-changing-the-visibility-of-androids-navigation-and-status-bars-and-implementing-immersive-mode/
When implementing this script to your Unity project, you can then use the following code to show both the navigation bar and the status bar. If you only want to show the status bar, and not the navigation bar, set the navigation bar state på .hidden!
ImmersiveAndroid.statusBarState = ImmersiveAndroid.States.Visible; ImmersiveAndroid.navigationBarState = ImmersiveAndroid.States.Visible;