如何设置 AutoCompleteTextView 结果的大小?

发布于 2024-10-29 04:55:01 字数 194 浏览 1 评论 0原文

有谁知道如何设置 AutoCompleteTextView 结果的大小?

在此处输入图像描述

我尝试 android:textSize="12sp" 但它只修改了大小TextView 中的文本,而不是结果中的文本。

Does anybody know How to set the size of an AutoCompleteTextView Result ?

enter image description here

I try android:textSize="12sp" But it only modify the size of the text in the TextView, not in the result.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

感受沵的脚步 2024-11-05 04:55:01

最好的方法是使用自定义设计创建您自己的 xml 文件,例如“dropdown.xml”,

<?xml version="1.0" encoding="utf-8"?>
<TextView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/textAutoComplete"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#F3F5E1"
    android:gravity="center_vertical"
    android:padding="5dp" />

并在您的代码中使用它

AutoCompleteTextView etChoose= (AutoCompleteTextView) findViewById(R.id.etChoose);
ArrayAdapter<String> adapterChoose = new ArrayAdapter<String>(this,R.layout.dropdown, ChooseList);

The best way is to create your own xml file with a customized design, such as "dropdown.xml"

<?xml version="1.0" encoding="utf-8"?>
<TextView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/textAutoComplete"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#F3F5E1"
    android:gravity="center_vertical"
    android:padding="5dp" />

and in your code use this

AutoCompleteTextView etChoose= (AutoCompleteTextView) findViewById(R.id.etChoose);
ArrayAdapter<String> adapterChoose = new ArrayAdapter<String>(this,R.layout.dropdown, ChooseList);
凉薄对峙 2024-11-05 04:55:01

只需在 xml 文件中为 AutoCompleteTextView 添加 android:dropDownHeight="size" 即可。

Just add android:dropDownHeight="size" for AutoCompleteTextView in xml file.

就是爱搞怪 2024-11-05 04:55:01
private ArrayAdapter<String> autoCompleteAdapter = new ArrayAdapter<String>
                          (this,android.R.layout.simple_list_item_1, yourList) {

    public View getView(int position, View convertView, ViewGroup parent) {
        View v = super.getView(position, convertView, parent);

        ((TextView) v).setTextSize(14);                             
        Typeface Type = getFont () ;  // custom method to get a font from "assets" folder
        ((TextView) v).setTypeface(Type);               
        ((TextView) v).setTextColor(YourColor);                                             
        ((TextView) v) .setGravity(Gravity.LEFT|Gravity.CENTER_VERTICAL);

        return v;
    }           
};

 YourAutoCompleteView.setAdapter(autoCompleteAdapter);
private ArrayAdapter<String> autoCompleteAdapter = new ArrayAdapter<String>
                          (this,android.R.layout.simple_list_item_1, yourList) {

    public View getView(int position, View convertView, ViewGroup parent) {
        View v = super.getView(position, convertView, parent);

        ((TextView) v).setTextSize(14);                             
        Typeface Type = getFont () ;  // custom method to get a font from "assets" folder
        ((TextView) v).setTypeface(Type);               
        ((TextView) v).setTextColor(YourColor);                                             
        ((TextView) v) .setGravity(Gravity.LEFT|Gravity.CENTER_VERTICAL);

        return v;
    }           
};

 YourAutoCompleteView.setAdapter(autoCompleteAdapter);
迷鸟归林 2024-11-05 04:55:01

假设有人现在面临同样的问题

您也可以使用 simple_spinner_dropdown_item 来代替使用 simple_spinner_item 来获得更好的结果,因为它会格式化数据,就像在正常下拉列表中显示的那样

ArrayAdapter<String> adapter2 = new ArrayAdapter<String>(getApplicationContext(), android.R.layout.simple_spinner_dropdown_item, subjects1);

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

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