android 自动完成功能不适合屏幕

发布于 2024-12-11 08:48:53 字数 240 浏览 0 评论 0原文

我试图在屏幕底部添加一个 AutoCompleteTextView 小部件,但是由于键盘的原因,当然不会显示自动完成选项...

有什么提示吗?也许建议框可以向上打开?

(使用Android的tutorial来检查它)

I'm trying to have an AutoCompleteTextView widget in the bottom of my screen, but of course the autocomplete options are not shown because of the keyboard ...

Any tips ? Perhaps it's possible to the the suggestions box opened upwards ?

(used Android's tutorial to check it)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

雨巷深深 2024-12-18 08:48:53

请将其添加到清单中的活动中:

android:windowSoftInputMode="stateHidden|adjustResize"

活动的主窗口始终会调整大小,以便为屏幕上的软键盘腾出空间

android:windowSoftInputMode="stateHidden|adjustPan"

活动的主窗口未调整大小以为软键盘腾出空间。相反,窗口的内容会自动平移,以便当前焦点永远不会被键盘遮挡,并且用户始终可以看到他们正在键入的内容

具体取决于适合您的需求的内容

Please add this to your activity in the manifest :

android:windowSoftInputMode="stateHidden|adjustResize"

The activity's main window is always resized to make room for the soft keyboard on screen

or

android:windowSoftInputMode="stateHidden|adjustPan"

he activity's main window is not resized to make room for the soft keyboard. Rather, the contents of the window are automatically panned so that the current focus is never obscured by the keyboard and users can always see what they are typing

Depending on what suits your needs

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