Android 实现模拟按键方法二

通过Runtime实现模拟按键,但速度很慢。


用Instrumentation效果不错

 new Thread () {
            public void run () {
                try {
                   Instrumentation inst=new Instrumentation();
                   inst.sendKeyDownUpSync(4);
                } catch(Exception e) {
                        Log.e("Exception when sendPointerSync", e.toString());
                }
            }
        }.start(); 


你可能感兴趣的:(Android 实现模拟按键方法二)