尝试使用“adb shell input”模拟某些曲线的手势。在“su”流中执行所有命令。我怎样才能制作曲线?找到这种方式,但它不起作用:
CommandClick.su("input swipe 520 430 520 815 1000 && input swipe 520 815 675 815 1000");
CommandClick.su
public static void su(String... commands) {
new CommandClick(SU).command(commands).finish();}
CommandClick
try {
dataOutputStream.writeBytes(command + "\n");
dataOutputStream.flush();
} catch (IOException e) {
e.printStackTrace();
}
我想要像一条线一样刷两次......
答案 0 :(得分:0)
尝试使用sendevent
命令。
语法:sendevent <device> <command> <argument> <value>
sendevent
将您想要的任何事件直接发送到输入设备事件队列。要复制复杂的滑动,您需要生成:
上述每项操作均包括:
sendevent <device> <parameters for the operation type>
sendevent <device> 3 0 <x-coord>
sendevent <device> 3 1 <y-coord>
sendevent <device> 0 0 0 # (event separator)
特定设备以及操作类型的参数可能会根据您模拟事件的设备类型和品牌而有所不同。获取这些详细信息的最佳方法是运行getevent
,将几次滑动的输出传输到文件并查看输出。
这些链接更详细: