每5秒滑动屏幕一次。shll命令
没有具体的shll命令,可能是指shell命令,可以使用以下命令实现每5秒滑动屏幕一次:
while true; do adb shell input swipe 500 1500 500 500 500; sleep 5; done
其中,adb shell input swipe命令用于模拟滑动屏幕的操作,500 1500 500 500 500表示从屏幕中心向下滑动,滑动时间为500毫秒。sleep 5命令用于让脚本每隔5秒执行一次。
原文地址: https://www.cveoy.top/t/topic/bG5q 著作权归作者所有。请勿转载和采集!