adb shell 关闭屏幕触摸
时间: 2023-07-01 14:07:25 浏览: 203
adb shell命令
你可以使用以下命令来关闭 Android 设备的屏幕触摸:
```
adb shell input keyevent 82 && adb shell input keyevent 26 && adb shell input swipe 500 500 500 1000 1000
```
这个命令会模拟按下电源键和菜单键,然后向下滑动以锁定设备屏幕。这将禁用屏幕触摸,直到你再次按下电源键或重新启动设备。
阅读全文