Android autoCompleteTextView随屏幕尺寸变化?
Android 开发人员大家好,
我有一个关于 autocompletetextview 的问题。我正在平板电脑上进行开发,并且我对其进行了很好的定制。当我在平板电脑上运行它时,它看起来像这样:
这实际上就是我想要的 - 所有可见的东西,小物品,蓝色而不是橙色。凉爽的。 这就是当我在较小的设备(例如 Nexus-S)上运行完全相同的应用程序时发生的情况:
原来的视图消失了,有橙色的东西,而且我最多一两次只能看到一个建议的项目。这不是我的本意。
如果我不是横向运行此应用程序,而是纵向运行该应用程序,则一切正常。疯狂的。 有谁知道我可以做什么来在较小的屏幕上保留自定义布局?
Hello fellow Android developpers,
I have a problem regarding the autocompletetextview. I'm developping on a tablet, and I customized it nicely. When I run it on a tablet, it looks like this:
This is actually what I want - everything visible, small items, blue instead of orange. Cool.
And this is what happens when I run the exact same app on a smaller device, for example a Nexus-S:
The original views disappear, have orange stuff, and I only see one suggested item at a time or two at best. This is not what I intended.
If I run this app not in landscape, but in portrait, all works fine. Insane.
Does anybody know what I can do to keep the custom layout on the smaller screen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处显示的第二张图像是设备处于横向模式时自动完成文本查看或编辑文本的结果。
如果设备处于纵向模式,它将在垂直列表中显示建议,而对于横向模式,它将在水平列表中显示,并尝试用编辑文本和软键盘填充整个屏幕。
我也遇到了同样的问题,请检查Android开发者网站以获取有关支持多屏幕的信息,它可能会对您有所帮助。
新答案
要在按下“完成”按钮时隐藏软键盘,您必须使用 AutoCompleteTextView 的 imeOptions。对您的代码进行这些更改并尝试。
对 XML 布局文件进行如下更改,
在 java 文件中
希望对您有所帮助。
The second image you shown here is the result of auto complete text view or edit text when the device is in landscape mode.
If the device is in portrait mode it will display the suggestions in Vertical list, and for landscape mode it will display in horizontal list and it tries to fill the entire screen with edit text and soft keyboard.
I too faced same problem, Please check the Android Developers website for information about Supporting multiple screens, it may help you.
New Answer
To hide soft keyboard when you press Done button you have to use imeOptions for AutoCompleteTextView. Do these changes to your code and try it.
Changes to XML layout file as below
In java file
I hope it may help you.