adb shell 长按屏幕,触摸不终止
时间: 2023-08-16 12:05:54 浏览: 340
android adb shell
在 Android 设备上使用 adb shell 长按屏幕时,需要使用以下命令:
```
adb shell input touchscreen swipe x1 y1 x2 y2 duration
```
其中,x1、y1 和 x2、y2 分别是起点和终点的坐标,duration 是滑动的时间(以毫秒为单位)。如果想要模拟长按,则需要将 duration 参数设置为一个较大的值,例如 3000 毫秒。例如,要在屏幕上长按一个位置,可以使用以下命令:
```
adb shell input touchscreen swipe x y x y 3000
```
执行该命令后,将会在指定位置长按 3 秒钟,直到手动终止。如果触摸不终止,可能是设备出现了一些问题,可以尝试重新启动设备或使用其他设备进行测试。
阅读全文