1
上模擬快速掃在我的應用我使用su命令在我的應用程序來模擬刷卡:植根設備
Process p = Runtime.getRuntime().exec(new String[]{"su", "-c", "adb
shell input touchscreen swipe" + " " + oldCoordinates[i] +
" " + oldCoordinates[i+1] + " " + newCoordinates[j] + " "
+ newCoordinates[j+1]});
p.waitFor();
但它正在採取1秒左右才能執行此命令... 我怎樣才能提高速度還是有任何其他的我可以模擬快速刷卡?