Reputation: 1359
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.
Upvotes: 1
Views: 898
Reputation: 1551
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/
Upvotes: 0