How to hide gesture bar while still being able to swipe between apps (no root).

finshan

Senior Member
Jan 17, 2018
66
15
0
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!! :)
 
  • Like
Reactions: winol

finshan

Senior Member
Jan 17, 2018
66
15
0
For total newbs, here's a quick rundown of how to set up ADB for your device. Trust me it's much simpler than it looks:

PART ONE—Getting ADB on your computer
1. Download the Platform Tools from Google.
2. Unzip it.
3. Start a command prompt or terminal from the new platform-tools folder that step 2 created.
- On Windows, this means opening the platform-tools folder and then holding shift and right clicking and opening a powershell (or command prompt or whatever option you get)
- On Mac, this means open the terminal (cmd+space > terminal), type cd and then drag the platform tools folder onto the terminal and then press enter (basically, cd changes the directory of the terminal, and dragging the platform-tools folder tells it that's where you cd'ing to), then press enter. (cd > drag folder > press enter)
4. That's it. You're now able to do ./adb and ./fastboot commands. If any posts online tell you to type adb, use a ./ in front of the adb. Same with fastboot. There's a separate process to avoid having to type the ./ but it's frankly more work than it's worth IMO.

PART 2—Making your phone allow ADB
1. Go to settings > about phone > software information
2. Tap "Build number" 7 times
3. Go back one page, at the top search "usb debugging" and enable the option
4. Plug your device into your computer and go past your lockscreen
5. In the terminal in platform-tools, type
./adb devices
6. This will trigger a popup on your phone asking you to allow. Accept this popup.
7. Now you can run ./adb commands for your specific device.
 
Last edited:
  • Like
Reactions: winol

TheFerhatKing

Senior Member
Jul 22, 2012
809
232
73
I don't know also if you mean the gesture bar from Samsung that takes a little line of space in every app. But it is still possible to switch between apps, I wrote this to another guy with that kind of problem:

"It's still possible to swipe between apps but it's more difficult because you don't have the line for orientation. You have to slide up very gently and then left or right."

Sure with the bar it is really flawless, but still possible without. Just needs to be pushed little bit up and then swiping apps is possible.

Gesendet von meinem SM-N975F mit Tapatalk
 
Last edited:

finshan

Senior Member
Jan 17, 2018
66
15
0
Hmm, I don't have the gesture bar at all (it's one of the first things i disabled) and i didn't need adb to do it. Are you using the Android 10 gestures or Samsung?
I don't know also if you mean the gesture bar from Samsung that takes a little line of space in every app. But it is still possible to switch between apps, I wrote this to another guy with that kind of problem:

"It's still possible to swipe between apps but it's more difficult because you don't have the line for orientation. You have to slide up very gently and then left or right."

Sure with the bar it is really flawless, but still possible without. Just needs to be pushed little bit up and then swiping apps is possible.

Gesendet von meinem SM-N975F mit Tapatalk
Sorry I should have been more clear. With this command, you can still swipe left and right to switch between apps. The toggle in settings forces you to do a new arching swipe gesture that's pretty bad IMO (and I assume in everyone's opinion, which is why it's not the way iOS does it or any of the Android 10 phones that are copying the iOS gesture).