android控件之AutoCompleteTextView下拉列表显示一片空白

来源:互联网 发布:单片机电子设计与制作 编辑:程序博客网 时间:2024/06/05 11:32

在使用AutoCompleteTextView控件时,出现控件的下拉列表显示为空白,

当选中下拉列表的某一栏时却能看见内容的现象。

源代码:ArrayAdapter adapter = new ArrayAdapter(AutoComplite.this, android.R.layout.simple_dropdown_item_1line, autoStrings);

解决方案的代码如下:

ArrayAdapter adapter = new ArrayAdapter(AutoComplite.this, android.R.layout.simple_list_item_1, autoStrings);


就是改变适配器样式将 R.layout.simple_dropdown_item_1line   改为    R.layout.simple_list_item_1  即可