【ADB】借助ADB模拟滑动屏幕,并进行循环
使用adb shell input 的swipe函数(应该是个函数)
swipe x1 y1 x2 y2 time(以毫秒为单位)
adb shell input swipe 1070 2200 1070 200 10000
进行循环
adb shell "for i in $(seq 1 10); do input swipe 1070 2200 1070 200 10000; done"
使用adb shell input 的swipe函数(应该是个函数)
swipe x1 y1 x2 y2 time(以毫秒为单位)
adb shell input swipe 1070 2200 1070 200 10000
进行循环
adb shell "for i in $(seq 1 10); do input swipe 1070 2200 1070 200 10000; done"