Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在屏幕底部有一个 AutoCompleteTextView 小部件,但是由于键盘的原因,当然不会显示自动完成选项...
有小费吗 ?也许向上打开的建议框是可能的?
(使用Android的教程检查它)
请将此添加到清单中的活动中:
android:windowSoftInputMode="stateHidden|adjustResize"
Activity 的主窗口总是调整大小,以便为屏幕上的软键盘腾出空间
或者
android:windowSoftInputMode="stateHidden|adjustPan"
活动的主窗口没有调整大小来为软键盘腾出空间。相反,窗口的内容会自动平移,因此当前焦点永远不会被键盘遮挡,用户始终可以看到他们正在输入的内容
取决于适合您的需求