Windows系统
cmd里安装adb
下载地址:
http://dl.adbdriver.com/upload/adbdriver.zip
将手机用数据线连接电脑
在cmd里输入
adb shell
出现 $或# 后
如果想左边是多任务,右边是返回键,就输入
settings put secure sysui_nav_bar "space,recent;home;back,space"
如果想左边是返回键,右边是多任务,就输入
settings put secure sysui_nav_bar "space,back;home;recent,space"
聪明的小朋友已经看出来了,space是空格,back是返回键,recent是多任务,home就是home键
学会的小朋友可以根据自己需求更改
ubuntu系统(我觉得会用linux的好像不用教)
我用的是ubuntu18.04
apt install adb
adb shell
如果想左边是多任务,右边是返回键,就输入
settings put secure sysui_nav_bar "space,recent;home;back,space"
如果想左边是返回键,右边是多任务,就输入
settings put secure sysui_nav_bar "space,back;home;recent,space"
Mac系统
安装homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安装adb
brew cask install android-platform-tools
如果想左边是多任务,右边是返回键,就输入
settings put secure sysui_nav_bar "space,recent;home;back,space"
如果想左边是返回键,右边是多任务,就输入
settings put secure sysui_nav_bar "space,back;home;recent,space"