如何禁用 lwuit vkb 并显示默认系统 vkb?

发布于 2024-12-01 05:13:33 字数 169 浏览 1 评论 0原文

我尝试了该命令,

Display.getInstance().setDefaultVirtualKeyboard(null);

它禁用了 luiwt 虚拟键盘以及系统虚拟键盘。

如何禁用 lwuit 虚拟键盘并显示平台内置虚拟键盘。

i tried the command

Display.getInstance().setDefaultVirtualKeyboard(null);

it disabled luiwt virtual keyboard as well as the system virtual keyboard..

how to disable lwuit virtual keyboard and show platform built-in virtual keyboard.

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

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

发布评论

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

评论(3

給妳壹絲溫柔 2024-12-08 05:13:33

原生 VKB 默认适用于 Android 和 Android 系统。 RIM 设备。

MIDP 设备无法支持它,因为 MIDP API 没有针对 VKB 的配置。让它在诺基亚设备(等)上工作的唯一方法是通过 jad 属性保持其持续打开。

Native VKB works by default for both Android & RIM devices.

It can't be supported on MIDP devices since the MIDP API's have no provisioning for VKB's. The only way to get it to work on Nokia devices (etc.) is to keep it constantly on through a jad property.

才能让你更想念 2024-12-08 05:13:33

查看 setDefaultVirtualKeyboard 的 API 文档 null 看起来不像您想要的正确参数 得到。

空参数旨在“禁用虚拟键盘”而不是将其设置为其他内容。至于设置内置键盘,似乎没有相应的API

Looking at the API docs for setDefaultVirtualKeyboard null doesn't look like the right parameter for what you're trying to get.

Null parameter is intended to "disable the VirtualKeyboard" not to set it to something else. As for setting built-in keyboard, it looks like there's no API for that

孤云独去闲 2024-12-08 05:13:33

试试这个,但我还没有测试过

Display.getInstance().setShowVirtualKeyboard(false);

try this, how ever i have not tested

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