Reputation: 1359
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.
Upvotes: 3
Views: 575
Reputation: 52760
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.
Upvotes: 1
Reputation: 12054
try this, how ever i have not tested
Display.getInstance().setShowVirtualKeyboard(false);
Upvotes: 0
Reputation: 6230
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
Upvotes: 1