机器人类喜欢android的类

Roh*_*hit 3 java android class awtrobot

可能重复:
Android API,如java.awt.Robot

在java中是否还有像Robot类一样的其他类,或者我们可以在android中使用Robot类吗?

Kon*_*che 6

不,但对你而言,可能是Android 上的Instrumentation.

例如,sendKeyDownUpSync(int key)用于向当前聚焦的窗口发送上下键事件同步.

Instrumentation inst = new Instrumentation();
inst.sendKeyDownUpSync(KeyEvent.KEYCODE_MENU);
Run Code Online (Sandbox Code Playgroud)

还有TouchUtils用于模拟触摸事件的实用程序类.虽然我必须注意,Instrumentation类实际上只用于测试,所以它取决于你想要实现的目标.