自己的 Android 硬件键盘快捷键
我想制作自己的快捷方式,以便在 android 手机(例如 Milestone/Droid、T-Mobile G1/HTC Dream)上与硬件键盘一起使用和 T-Mobile G2/Desire Z。 例如,如果有 alt+e 快捷键来制作 ę ,而无需更换键盘,那就太酷了。 (这是我的国民角色)
I want to make own shortcuts to use with hardware keyboard on android phones like Milestone/Droid, T-Mobile G1/HTC Dream and T-Mobile G2/Desire Z.
It will be cool to have alt+e shortcut to make ę for example, without changing keyboard. (It's my national chars)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嘿我有类似的问题。当我在外部键盘上按 F2 时,我想运行像画廊这样的应用程序。
到目前为止,我推断我们需要以某种方式重写
PhoneWindowManager.java
类函数interceptKeyBeforeQueueing
来检测特定的击键并向其添加我们自己的行为。另一个可以捕捉按键事件的地方是
InputDispatcher.java
。我还需要验证这个概念本身。如果您有任何解决方案请分享。
Hey I have a similar problem. I want to run an application like gallery when I hit F2 on my external keyboard.
What I have deduced so far is that we need to somehow override the
PhoneWindowManager.java
class functioninterceptKeyBeforeQueueing
to detect a particular keystroke and add our own behavior to it.Another place you can catch the key event is
InputDispatcher.java
.I still need to verify the concept itself. If you have any solution please share.