Hossein Mansouri
Hossein Mansouri

Reputation: 752

suggested words in autocomplete not visible?

when i try to use autocomplete textview it works but all the suggested words have white color and when i clicked on them it s possible to see what is that suggestion

what should i do for this problem?

enter image description here

<AutoCompleteTextView
      android:id="@+id/etBrand"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:ems="10"
      android:hint="Brand"
      android:inputType="textAutoComplete|textAutoCorrect"
      android:textColor="#000000"
      android:textColorHighlight="@android:color/black" />

what should i add to this xml code to solve this problem? thanks in advance...

Upvotes: 1

Views: 200

Answers (1)

Ahmed Ekri
Ahmed Ekri

Reputation: 4651

This a logged bug,

You can find some ways to fix it in the same link.

Auto complete text view bug

Bug solution

I hope it helps...

source: https://stackoverflow.com/a/8471078/1932105

please use the search before asking next time.

Upvotes: 1

Related Questions