我读过this.我无法编译coredump给出的答案.我可以清楚地看到inputManager.java中的injectinputEvent(AndroID源代码).它也是公开的.但是我无法编译它.可能是它的私人API,有一种方法可以访问它..
解决方法:
API被隐藏.您可以通过反射访问它:
inputManager im = (inputManager) getSystemService(Context. input_SERVICE);Class[] paramTypes = new Class[2];paramTypes[0] = inputEvent.class;paramTypes[1] = Integer.TYPE;Object[] params = new Object[2];params[0] = newEvent;params[1] = 0;try { Method hIDdenMethod = im.getClass().getmethod("injectinputEvent", paramTypes); hIDdenMethod.invoke(im, params);} catch (NoSuchMethodException | illegalaccessexception | IllegalArgumentException | InvocationTargetException e) { e.printstacktrace();}
总结 以上是内存溢出为你收集整理的android InputManager injectInputEvent全部内容,希望文章能够帮你解决android InputManager injectInputEvent所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)