adb input
命令允许您模拟触摸事件和其他输入操作
adb input
命令:adb input tap <x坐标> <y坐标>
adb input keyevent <按键值>
adb input swipe <起始x坐标> <起始y坐标> <结束x坐标> <结束y坐标>
其中:
<x坐标>
和 <y坐标>
是屏幕上的点击位置。例如:adb input tap 100 200
将在屏幕的(100, 200)坐标处执行点击操作。<按键值>
是要模拟的按键。例如:adb input keyevent KEYCODE_HOME
将模拟按下Home键。您可以使用adb keyevent --list
查看所有可用的按键值。<起始x坐标>
、<起始y坐标>
、<结束x坐标>
和 <结束y坐标>
是滑动操作的范围。例如:adb input swipe 100 200 300 400
将从屏幕的(100, 200)坐标处滑动到(300, 400)坐标处。示例:
adb input tap 100 200
adb input keyevent KEYCODE_HOME
adb input swipe 100 200 300 400