how to disable lwuit vkb?
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 givenTo 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.开发者_StackOverflow社区..there was no details about disabling.Use Display.setDefaultVirtualKeyboard(null);
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/
精彩评论