Android autocompletetextview下拉框的元素有大字体

发布于 2024-11-02 12:54:35 字数 436 浏览 0 评论 0原文

我想将自动完成下拉框元素大小更改为较小的值。 我对 textview.settextsize 所做的任何更改仅影响字段框中的值,而不影响下拉框中的值!

Screeshot with 显示下拉列表的大字体和列表框的较小字体

我正在动态添加列表项,我的适配器是设置为资源

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!

Screeshot with shows the large font for drop down and the smaller for the listbox

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 技术交流群。

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

发布评论

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

评论(2

不乱于心 2024-11-09 12:54:35

您的“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.

凉世弥音 2024-11-09 12:54:35

使用此布局,它将自动完成下拉框元素大小更改为更小

ArrayAdapter<String> adapter = new ArrayAdapter<String>(
            this, android.R.layout.simple_spinner_item, aList);

Use This Layout , It will change the autocomplete dropdown boxes element size to smaller

ArrayAdapter<String> adapter = new ArrayAdapter<String>(
            this, android.R.layout.simple_spinner_item, aList);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文