If you hide the gesture bar, it disables the ability to swipe between apps. But with a single ADB command to hide the bar and STILL be able to swipe between apps:
./adb shell wm overscan 0,0,0,-39
To revert the change, use
./adb shell wm overscan 0,0,0,0
What this does is pushes the bar down off the screen, effectively permanently hiding it (until you revert it)—but the functionality of the bar remains intact as if it were still there.
*Note: this has the effect of "pulling" the UI elements down by the same amount which would normally appear on the bottom of the screen, e.g. the hide keyboard button, switch keyboard button, lockscreen shortcuts, etc. They are all still visible and functional, just shifted down by 39 pixels.
You're welcome!!
./adb shell wm overscan 0,0,0,-39
To revert the change, use
./adb shell wm overscan 0,0,0,0
What this does is pushes the bar down off the screen, effectively permanently hiding it (until you revert it)—but the functionality of the bar remains intact as if it were still there.
*Note: this has the effect of "pulling" the UI elements down by the same amount which would normally appear on the bottom of the screen, e.g. the hide keyboard button, switch keyboard button, lockscreen shortcuts, etc. They are all still visible and functional, just shifted down by 39 pixels.
You're welcome!!