如何设置 AutoCompleteTextView 结果的大小?
有谁知道如何设置 AutoCompleteTextView 结果的大小?
我尝试 android:textSize="12sp"
但它只修改了大小TextView 中的文本,而不是结果中的文本。
Does anybody know How to set the size of an AutoCompleteTextView Result ?
I try android:textSize="12sp"
But it only modify the size of the text in the TextView, not in the result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
最好的方法是使用自定义设计创建您自己的 xml 文件,例如“dropdown.xml”,
并在您的代码中使用它
The best way is to create your own xml file with a customized design, such as "dropdown.xml"
and in your code use this
只需在 xml 文件中为
AutoCompleteTextView
添加android:dropDownHeight="size"
即可。Just add
android:dropDownHeight="size"
forAutoCompleteTextView
in xml file.假设有人现在面临同样的问题
您也可以使用 simple_spinner_dropdown_item 来代替使用 simple_spinner_item 来获得更好的结果,因为它会格式化数据,就像在正常下拉列表中显示的那样
Assuming someone is facing the same issue now
Instead of using simple_spinner_item you can also use simple_spinner_dropdown_item to get better results as it will format the data as it would appear in a normal dropdown