我正在尝试在我的Android应用程序中创建一个AutoCompleteTextView。麻烦的是,我无法自定义它

时间:2015-06-26 12:18:23

标签: android autocompletetextview

它适用于以下代码:

AutoCompleteTextView autoTextView = (AutoCompleteTextView) findViewById(R.id.fillText);
        ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, typeAutoFill);
        autoTextView.setAdapter(adapter);

//typeAutoFill is my String array that stores the values which must appear.

但是,建议文本的大小对我的应用来说太大了。我需要让它们变小。我确实调查过这里发布的类似问题..

我试过了:

android:dropDownHeight=""            //with different values

这不会产生任何变化。

我还尝试使用一个XML资源文件跟随ArrayAdapter,该文件只包含具有我选择属性的TextView:

AutoCompleteTextView autoTextView = (AutoCompleteTextView) findViewById(R.id.fillText);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,R.layout.auto_fill_item,R.id.autoFillTextView,typeAutoFill);
autoTextView.setAdapter(adapter);

这导致我的应用程序崩溃。

真的遇到了这个问题。我尝试了各种替代方案。有人可以帮忙吗? 提前谢谢。

2 个答案:

答案 0 :(得分:3)

Textsize = 10sp 设置为自定义 Textview 或更少

答案 1 :(得分:2)

尝试这样做,为文本textdesign.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="#f45455"
android:gravity="center_vertical"
android:padding="5dp" />

您的自动填充

AutoCompleteTextView etChoose= (AutoCompleteTextView) findViewById(R.id.autocomplete);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,R.layout. textdesign, ChooseList);
autoTextView.setAdapter(adapter);