软键盘将所有布局向上移动

发布于 2024-12-01 22:30:33 字数 135 浏览 1 评论 0原文

当显示带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

屋顶上的小猫咪 2024-12-08 22:30:33

android:windowSoftInputMode="adjustNothing" 放在 AndroidManifest.xml 上的 Activity 上。

<activity
    android:name=".YourActivity"  
    android:windowSoftInputMode="adjustNothing">
</activity>

Put android:windowSoftInputMode="adjustNothing" on your Activity on the AndroidManifest.xml.

<activity
    android:name=".YourActivity"  
    android:windowSoftInputMode="adjustNothing">
</activity>
jJeQQOZ5 2024-12-08 22:30:33

将您的布​​局放入滚动视图中。

Put your layout inside a scrollview.

狼亦尘 2024-12-08 22:30:33

android:windowSoftInputMode =“调整Nothing”

android:windowSoftInputMode="adjustNothing"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文