adb 控制手机屏幕滑动

Posted by hcy on July 9, 2019

adb 控制手机屏幕滑动

1
2
3
4
5
6
7
8
//滑动
adb shell input touchscreen swipe 930 880 930 380 //向上滑
adb shell input touchscreen swipe 930 880 330 880 //向左滑
adb shell input touchscreen swipe 330 880 930 880 //向右滑
adb shell input touchscreen swipe 930 380 930 880 //向下滑

//点击屏幕
adb shell input mouse tap 990 1221

转载请注明出处:https://www.huangchaoyu.com/2019/07/09/adb-控制手机屏幕滑动/