Is there a simple way to hide the Navigation Bar in Android Studio?
In the android studio, you can easily remove the status bar by adding a line in the themes.xml file.
true
This simple one-line code will hide the status bar. If the user touches the top part of the screen, it appears but after 1 or 2 seconds it disappears again. Is there a similar way to achieve the same effect for the navigation bar? I am using Android Studio Chipmunk 2021.2.1.
Here is my build.gradle file
// Top-level build file where you can add configuration options common to all...