美文网首页
adb命令模拟按键事件 KeyCode

adb命令模拟按键事件 KeyCode

作者: 辉色投像 | 来源:发表于2020-12-18 10:23 被阅读0次

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

    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 

    //输入字符abc

    adb shell input text abc

    相关文章

      网友评论

          本文标题:adb命令模拟按键事件 KeyCode

          本文链接:https://www.haomeiwen.com/subject/bvdxnktx.html