软键盘将所有布局向上移动
当显示带有 EditText 的 AlertDialog 时,软键盘会向上移动活动布局。当我使用轨迹球以及使用轨迹球后的所有后续尝试时,都会发生这种情况。当我在触摸模式下调用对话框时 - 软键盘覆盖在我的布局上。我可以做什么来始终使用软键盘覆盖可能的布局?
When AlertDialog with EditText is showing, softkeyboard moves up layout of activity. This happens when i use trackball and all subsequent attempts after using trackball. when i call dialog in touch mode - softkeyboard overlay on my layout. what i can do to always overlay may layout with soft keyboard?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将
android:windowSoftInputMode="adjustNothing"
放在AndroidManifest.xml
上的Activity
上。Put
android:windowSoftInputMode="adjustNothing"
on yourActivity
on theAndroidManifest.xml
.将您的布局放入滚动视图中。
Put your layout inside a scrollview.
android:windowSoftInputMode =“调整Nothing”
android:windowSoftInputMode="adjustNothing"