How can I change the font of Search view suggestion?

2.1k Views Asked by At

I searched for hours all they suggest is using customized cursor adapter. however I'm using content provider to fill the suggestion and don't have any cursor adapter . I'm able to find AutoCompleteTextView and change the font of the editable text view now, but I want to do the same for the suggestions. What should I do?

1

There are 1 best solutions below

0
On

To change the font of text you have to implement your own CursorAdapter and in bindView() method get the reference to the TextView and apply the font using TextView.setTypeface().