Input — Android input 调试手段

  • Post author:
  • Post category:其他


adb命令模拟按键事件 KeyCode

//这条命令相当于按了设备的Home键

adb shell input keyevent 3

//这条命令相当于按了设备的Back键

adb shell input keyevent 4

//可以解锁屏幕

adb shell input keyevent 82

//在屏幕上做划屏操作,前四个数为坐标点,后面是滑动的时间(单位毫秒)

adb shell input swipe 50 250 250 250 500

//在屏幕上点击坐标点x=50 y=250的位置。

adb shell input tap 50 250



版权声明:本文为xiaosaerjt原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。