作为华为的机子,home键可以实现所以的虚拟按键功能,轻触返回,长按回左面,左右划后台,完全不需要虚拟按键。下面通过adb来禁用虚拟键
沉浸导航栏:
adb shell settings put global policy_control immersive.navigation=*
如果想恢复到正常模式,运行下面的代码:
adb shell settings put global policy_control null
若要将导航栏完全隐藏(上划不会唤出):
adb shell wm overscan 0,0,0,-100
导航栏恢复正常
adb shell wm overscan 0,0,0,0
沉浸导航栏:
adb shell settings put global policy_control immersive.navigation=*
如果想恢复到正常模式,运行下面的代码:
adb shell settings put global policy_control null
若要将导航栏完全隐藏(上划不会唤出):
adb shell wm overscan 0,0,0,-100
导航栏恢复正常
adb shell wm overscan 0,0,0,0