Android 横向布局上键盘不成比例
我的 LinearLayout 中有 EditText。 当我在纵向模式下输入文本时,键盘显示正常,但当我更改为横向模式时,只有我可以编辑文本框及其右侧的按钮,看起来真的很糟糕。
只是我想看看两种模式下的键盘相同。
我如何实现这一目标?
问题是: 键盘填满了整个屏幕,当我想输入文本时,我无法在横向屏幕上看到其他视图。
谢谢
I am having EditText in my LinearLayout. When i am typing text in portrait mode keyboard displays fine but when i changed to landscape mode , only i can editext box and a button on right side of it, that looking really bad.
Just i want to look the keyboard same in both modes.
How i achieve that??
Problem is: Keyboard is filling the entire screen am not able to see other views in the screen in landscape when i want to type text..
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在横向布局中,您可以为 edittext 设置 android:imeOptions="actionDone|flagNoExtractUi"
In layout at landscape, you can set android:imeOptions="actionDone|flagNoExtractUi" for edittext