如何禁用 lwuit vkb 并显示默认系统 vkb?
我尝试了该命令,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
原生 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.
查看 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
试试这个,但我还没有测试过
try this, how ever i have not tested