隐藏全屏 j2me 应用程序的虚拟键盘
我使用 LWUIT 开发了一个 J2ME 应用程序,它工作正常,但是当我在运行 Windows Mobile 6 的手机上尝试该应用程序时,它会显示虚拟键盘与软键重叠,直到我双击它。
我已经尝试在应用程序 jar 上使用以下属性,但它们不起作用:
Navi-Key-Hidden: true
Nokia-MIDlet-On-Screen-Keypad: no
有谁知道 Windows Mobile 6 手机(或其他版本)是否有相同的选项或其他隐藏它的方法?
I developed a J2ME app using LWUIT and it works fine but when I try the app on a mobile phone with Windows Mobile 6 it displays the virtual keyboard overlapping the softkeys until I double clik it.
I already tried to use the following attributes on the application jar but they didn't worked:
Navi-Key-Hidden: true
Nokia-MIDlet-On-Screen-Keypad: no
Does anybody knows if there is the same option for Windows Mobile 6 phones (or other versions) or another hack to hide it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将此命令写在 Display.init() 之后,如上所示。
write this command after Display.init() as shown above.
您可能也想尝试此参数。但请注意,使用此 jad 参数,某些诺基亚设备根本不会安装该应用程序。
并且不要忘记在画布上运行 setFullscreen(true) 。一些较旧的设备甚至要求您每次重新绘制时都运行它。
还有一些 LG 参数有时可能会有所帮助;
祝你好运!
You might want to try this parameter as well. But be warned, with this jad parameter some nokia devices wont install the application at all.
And dont forget to run setFullscreen(true) on your Canvas. Some older devices even require that you run it every repaint.
There's also a few LG parameters that might help sometimes;
Good luck!