adb input
命令允許你模擬觸摸事件,如點擊、滑動等
adb shell input --list-events
這將顯示所有可用的觸摸事件及其代碼。找到你想要模擬的觸摸事件代碼。
adb input tap <x> <y>
將 <x>
和 <y>
替換為你想要點擊的屏幕坐標。例如:
adb input tap 100 200
這將模擬在屏幕坐標 (100, 200) 處的點擊。
adb input swipe <start_x> <start_y> <end_x> <end_y> <duration>
將 <start_x>
、<start_y>
、<end_x>
、<end_y>
和 <duration>
替換為你想要滑動的起始和結束坐標以及滑動持續時間(以毫秒為單位)。例如:
adb input swipe 100 200 300 400 1000
這將模擬從屏幕坐標 (100, 200) 到 (300, 400) 的滑動,持續時間為 1000 毫秒。
通過這些命令,你可以使用 adb input
模擬鼠標操作。