How can I change the text color in dropdown menu of an AutoCompleteTextView? Or how can I change the background color of a dropdown, by default dropdown\'s back
AutoCompleteTextView
I solved this without inflating the layout using a custom adapter
Simply create a layout autocomplete_custom.xml
Use it in your adapter
autocomplete.setAdapter(new ArrayAdapter(this, R.layout.autocomplete_custom, listContainingText););
Run. Bingo!