Android autocompletetextview下拉框的元素有大字体
我想将自动完成下拉框元素大小更改为较小的值。 我对 textview.settextsize 所做的任何更改仅影响字段框中的值,而不影响下拉框中的值!
我正在动态添加列表项,我的适配器是设置为资源
adapterForFromAutoText.setDropDownViewResource(android.R.layout.simple_dropdown_item_1line);
我是否应该添加自己的资源来自定义字体样式,如果是的话,我使用 adapterForFromAutoText.add(displayName);
通过适配器动态添加数据是否重要。
I would like to change the autocomplete dropdown boxes element size to something smaller.
Any change i do with textview.settextsize affects only the value in the fieldbox and not in the drop down box!
I am adding the list items dynamically and my adapter is set to the resource
adapterForFromAutoText.setDropDownViewResource(android.R.layout.simple_dropdown_item_1line);
Should i add my own resource to customize the style of the font, if so does it matter that i use adapterForFromAutoText.add(displayName);
to dynamically add data through the adapter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的“
android.R.layout.simple_dropdown_item_1line
”中是否有属性“android:textSize”
?您可能想尝试更改此处的文本大小。您可能还想查看此教程。
Do you have the attribute
"android:textSize"
within your "android.R.layout.simple_dropdown_item_1line
"? You may want to try to change the textSize there.You may also want to check out this tutorial.
使用此布局,它将自动完成下拉框元素大小更改为更小
Use This Layout , It will change the autocomplete dropdown boxes element size to smaller