Is it possible to remove/change color of the delimiter in AutoCompleteTextView's popup ? In ListView I get use of the "delimiter" parameter, but I haven't found any similar in AutoCompleteTextView.
Thanks.
Is it possible to remove/change color of the delimiter in AutoCompleteTextView's popup ? In ListView I get use of the "delimiter" parameter, but I haven't found any similar in AutoCompleteTextView.
Thanks.
Use an Adapter for your AutoCompleteTextView. Then, you can do something like this :
adapter.setDropDownViewResource(R.layout.spinner_dropdown_item);
The layout can be configured by you.
A quick fix solution, for removing the divider, might be writing a custom XML to override the style for each cell (Through the SetDropDownViewResource). After that you can change the android:popupBackground property on the autocompletetextview to match it to the color of your item's background.