AutoCompleteTextView removes / modifies the color divider

Is it possible to remove / change the color of the separator in the AutoCompleteTextView popup? In ListView, I use the "delimiter" option, but I have not found one in AutoCompleteTextView.

Thank.

+5
source share
2 answers

Use an adapter for your autocomplete. Then you can do something like this:

adapter.setDropDownViewResource(R.layout.spinner_dropdown_item);

Layout can be customized by you.

0
source

, , XML, ( SetDropDownViewResource). android: popupBackground autocompletetextview, .

0

All Articles