BlackBerry - 在不扩展主屏幕的屏幕上隐藏虚拟键盘
编辑: 我知道如何隐藏主屏幕上的虚拟键盘(工作时与 SpinboxField),但在使用 Screen 的子类时无法隐藏它。
Edit:
I know how to hide virtual keyboard on a MainScreen (when working with SpinboxField), but I can't hide it when working with a subclass of Screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 getScreen().getVirtualKeyboard().setVisibility(VirtualKeyboard.HIDE) - 当然,在 getScreen 和 getVirtualKeyboard 之后进行适当的 null 检查。
请注意,只有当您的目标是 4.7 或更高版本时,这才是可能的——如果您想支持旧平台,则需要一个没有此代码的单独构建。
You can use
getScreen().getVirtualKeyboard().setVisibility(VirtualKeyboard.HIDE)
-- with appropriate null checks after getScreen and getVirtualKeyboard, of course.Note that this is only possible if you're targeting 4.7 or later -- if you want to support older platforms, you'll need a separate build without this code.
你也可以使用
you can use too