如何在运行时以编程方式禁用手机按键

发布于 2024-11-14 19:38:11 字数 242 浏览 2 评论 0原文

在我的乱字游戏应用程序中,我想要一种仅启用键盘的字母键的方法,具体取决于出现的乱序单词。例如,“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月棠 2024-11-21 19:38:11

你需要做这样的事情:

 public boolean onKeyDown(int keyCode, KeyEvent event) {

        if (keyCode == "your key") {
            return true;

        }else return super.onKeyDown(keyCode, event);
   }

你需要使用 Key Event 找出关键代码

You need to do something like this:

 public boolean onKeyDown(int keyCode, KeyEvent event) {

        if (keyCode == "your key") {
            return true;

        }else return super.onKeyDown(keyCode, event);
   }

You need to find out the key code using Key Event

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文