如何在运行时以编程方式禁用手机按键
在我的乱字游戏应用程序中,我想要一种仅启用键盘的字母键的方法,具体取决于出现的乱序单词。例如,“rrowa”
是单词“arrow”的乱序形式,只有键 'a'、'r'、'o'、'w
' 必须必须启用,其余键必须禁用。当下一个乱序单词出现时,例如“nife”
(它是“fine”的乱序形式),只有字母'f','i','n','e' 必须启用。我们该怎么做?
Inside my Jumbled words game app, I want a way such that only the alphabet keys of the keyboard are enabled, depending on the scrambled words appearing. For example, "rrowa"
is a scrambled form of the word "arrow" and only the keys 'a', 'r', 'o', 'w
' must be enabled and the remaining keys must be disabled. When a next scrambled word appears for examples "nife"
which is a scrambled form of "fine", only alphabets 'f', 'i', 'n', 'e'
must be enabled. How do we do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要做这样的事情:
你需要使用 Key Event 找出关键代码
You need to do something like this:
You need to find out the key code using Key Event