Android Q: How to ditch the back button for full, customizable navigation gesture controls

The leaked build of Android Q that I obtained in the middle of January revealed a lot of major changes in the next Android version. The system-wide dark mode, privacy and permission revamp, and new desktop mode were the highlights, but then I found out that Google is prototyping revamped navigation gesture controls that do away with the back button. The new Android Q beta for all three Pixel smartphone generations still has Google’s experimental changes to gesture navigation, and you can enable them right now thanks to a few hidden settings.

If you want to see how Android Q’s new gestures compare to Android Pie‘s gestures, here’s a video I did last month. Note, however, that I’ve since discovered there’s much more to Android Q’s gestures, including the fact that they’re (partially) customizable!

Google probably won’t let you actually customize the navigation gestures in the final Android Q release. What I found is just their prototyping feature which they probably use to test different gesture control setups to see which ones are the best. Still, since the feature is there, we might as well take advantage of it to improve upon Android Pie’s gestures.

Requirements:

How to get rid of the back button for full navigation gestures in Android Q

Special thanks to XDA Recognized Developer Zacharee1 and joaomgcd (the Tasker developer) for their assistance in deciphering how this works!

Before I show you any commands, let me explain how this works. There’s a hidden Settings.Global preference called “quickstepcontroller_gesture_match_map” which takes a 6 digit or more integer value. The preference accepts digits from 1-7 (0, 1, and 8 are ignored), and the order in which you put the digits determines what actions the pill swipe gestures will take.

Here are the possible actions:

  1. QuickStep (enter the recent apps overview)
  2. QuickScrub (cycle through recent apps by moving your finger left and right on the pill while holding it down)
  3. Back (go back)
  4. QuickSwitch (quickly switch to the previous app)
  5. Null (do nothing)
  6. Assistant (launch the default assistant app)
  7. NotificationPanel (pull down the notification panel)

Here is the order in which the gestures are mapped:

  1. Swipe Up
  2. Swipe Down
  3. Swipe Left
  4. Swipe Right
  5. Unknown
  6. Unknown

I haven’t yet figured out what the 5th and 6th gestures are. No matter what I tried, I was unable to alter the single tap of the home button and long-press of the home button actions. I’ll update this article if I find out how to remap those actions.

So, here are some example ADB commands you can send to change up Android Q’s gestures for the better. (For the following ADB commands, if you’re using PowerShell on Windows, precede the command with a .”\” (no quotes). If you’re using macOS or Linux, precede the command with a “./” (no quotes).)

Example 1: New Back Gesture, Swipe Down for Notifications, Old QuickSwitch Animation

This is my preferred setup right now, because the new transition animation for switching between recent apps, as shown in the video earlier, is a bit buggy. This ADB command will make it so you can swipe the pill to the left to go back (making the back button redundant), swipe down to pull down the notification panel (super useful!), and lastly retain the Android Pie recent apps scrolling.

  1. Open up a command prompt or terminal window in the directory where you stored the ADB binary.
  2. Plug in your Pixel phone to your PC.
  3. To get rid of the back button, enter this command:
    adb shell settings put global quickstepcontroller_hideback 1
    
  4. Run the following command to change the gesture pill behavior:
    adb shell settings put global quickstepcontroller_gesture_match_map 173255
    

Example 2: New Back Gesture, Swipe Down for Notifications, New QuickSwitch Animation

If you want to try out Android Q’s new transition animation for the last app action, you can do so by substituting the 2 in the fourth position with a 1. Be warned that the transition is a little funky looking since it’s still a work-in-progress, and that you can’t swipe right on the pill when on the home screen. At least it looks nice, I guess.

  1. Follow steps 1-3 from the previous section.
  2. Run this command:
    adb shell settings put global quickstepcontroller_gesture_match_map 173155
    

Help! My Phone Keeps Crashing! I Want The Old Gestures Back!

Remember when I said the preference takes a value that’s 6 digits or more? Well, I meant it. If you put any integer that’s 5 digits or less, the method can’t handle it and SystemUI will just crash repeatedly. Fortunately, this is trivial to fix. You can either re-enter one of the above commands, this time using a 6 digit value, or you can reset the gestures by issuing the following commands:

adb shell settings put global quickstepcontroller_hideback 0
adb shell settings delete global quickstepcontroller_gesture_match_map

Have fun playing around with the new gestures in Android Q! This article only gives you a tiny slice of the work that Google is doing behind-the-scenes to improve gesture controls in Q. There are at least 6 other hidden Settings.Global values I haven’t shared here as well as other experiments that can’t be enabled via ADB. I’ll mess around with the Android Q beta on the Google Pixel 3 XL some more to see if there’s anything more I can share. More Android Q tips and tricks:

If you found this post useful and decide to share it on social media, please link back to us! We’ll have more tutorials for you soon. For more Android Q news, follow our tag.

Android Q News



Refference - xdadevelopers.com

Post a Comment

0 Comments