黑莓虚拟键盘弹出窗口的对齐问题
我有一个登录屏幕,其中包含一些文本字段、文本框、按钮,并且屏幕上有背景图像。现在,问题出在触摸设备上,当虚拟键盘弹出时,屏幕会随着背景图像缩小,并且所有组件的对齐都会受到干扰。我还启用了屏幕的垂直滚动,但对齐仍然受到干扰。请有人帮我解决这个问题。
谢谢,
I have a login screen with some textfields, textboxs, buttons and having the background image to the screen. Now the issue is on touch devices when virtual keyboard is popups, the screen shrinks with its background image and all components alignment get disturbed. I have also enabled the Vertical scroll to the screen but still alignment get disturbed. Please can one help me to sort out this issue.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜,您正在使用 Display.getHeight() 来对齐 UI 组件。并且显示虚拟键盘后, Display.getHeight() 不会返回实际的屏幕高度。它返回不包括键盘高度的高度。
I guess, you are using Display.getHeight() for the alignment of UI component. And after displaying virtual keyboard, Display.getHeight() not return the actual screen height. It's return the height excluding the keyboard height.