Android 如何从 Softkeboard 获取关键代码事件
这里我指的是 Android 中的 Softkeyboard 示例应用程序。我们如何获取应用程序中的键码事件?由于软键盘/android 软键盘作为服务运行,那么它如何将按下的键盘代码事件返回给应用程序?实际上我想从软键盘捕获按下的按键事件并通过套接字发送 请建议。
Here I am referring to Softkeyboard sample application from Android. How can we get the keycode events in an application? As the Softkeyboard/android softkeyboard is running as a service, so how it will return pressed keycode events back to the application? Actually i want to capture the pressed key events from the softkeypad and sent it over a socket
please suggest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你应该重写 onKeyDown 事件,然后检查你正在寻找的键码。在developer.android.com 中提供了许多密钥代码,因此您可以拥有它。如果您想了解详细信息,请随时询问。
I think you should override onKeyDown event and then check what keycode you are looking for. In developer.android.com number of keycode is available so you can have it. Please feel free to ask, if you want in detail.