android InputManager injectInputEvent

android InputManager injectInputEvent,第1张

概述我读过this.我无法编译coredump给出的答案.我可以清楚地看到InputManager.java中的injectInputEvent(Android源代码).它也是公开的.但是我无法编译它.可能是它的私人api,有一种方法可以访问它..解决方法:API被隐藏.您可以通过反射访问它:InputManagerim=(InputManager)getSyst

我读过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所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1110314.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存