我正在使用,AutoCompleteTextView
但在下拉菜单中遇到了白色背景上的白色文本的问题。
如果我开始在该字段中输入,则会出现下拉菜单,如果我单击下拉菜单,它会选择正确的项目并将其放置在文本字段中。我只是看不到我在点击什么。
ctAutoText = new AutoCompleteTextView( this );
ctAutoText.setHint( "CT Ratio" );
ctAutoText.setLayoutParams( editLP );
ctAutoText.setId( 1001 );
ArrayAdapter<String> adapter = new ArrayAdapter<String>( this, android.R.layout.simple_list_item_1, cTRatioList.toArray( new String[cTRatioList.size()] ) );
ctAutoText.setAdapter( adapter );