Faster android input tap command

前端 未结 3 680
误落风尘
误落风尘 2020-12-09 22:23

I\'m trying to run fast input tap commands one after another, but they run with 1 second between them. I\'m wondering if there is an option to run them faster.

3条回答
  •  臣服心动
    2020-12-09 23:00

    input is a java application and the "delay" you're seeing depends on how long it takes for your device to start a new java app. 1s is typical for older devices.

    You can not do much about it if you want to keep using input. The alternatives to that would be either using sendevent command or modifying input to accept series of coordinates for sending the whole gesture at once.

提交回复
热议问题