如何禁用 lwuit vkb?

发布于 2024-11-23 23:19:21 字数 313 浏览 2 评论 0原文

新的 svn 源代码中包含禁用 vkb 的功能...
但默认情况下 vkb 出现在 midlet 中...
如何在 midlet 中禁用它...
在旧文档中给出了

要使用 LWUIT 虚拟键盘,应用程序必须调用:
VKBImplementationFactory.init();
在致电之前:
Display.init(this);

但在最新版本中 VKBImplementationFactory 已被弃用。
旧文档仅提供启用...没有有关禁用的详细信息。

The ability for disabling vkb is included in the new svn source code...
But by default vkb comes in midlet...
How to disable it in midlet...
In the old documentation it was given

To use the LWUIT Virtual keyboard an application must call:
VKBImplementationFactory.init();
before calling to:
Display.init(this);

but in the latest version VKBImplementationFactory is deprecated .
And old documentation it was given to enable only...there was no details about disabling.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

孤城病女 2024-11-30 23:19:21

使用 Display.setDefaultVirtualKeyboard(null);

Use Display.setDefaultVirtualKeyboard(null);

笛声青案梦长安 2024-11-30 23:19:21
Display.getInstance().setDefaultVirtualKeyboard(null)

这将导致 VKB 被禁用,但问题出在触摸设备上,然后您没有任何键盘/

Display.getInstance().setDefaultVirtualKeyboard(null)

This will cause that VKB disabled but the problem is on touch devices which then you do not have any keyboard/

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