0

How to change text color of SearchView in Toolbar? image

Shams
  • 388
  • 1
  • 2
  • 13
  • 4
    Possible duplicate of [Is it possible to change the textcolor on an Android SearchView?](https://stackoverflow.com/questions/11321129/is-it-possible-to-change-the-textcolor-on-an-android-searchview) – R. Zagórski May 09 '19 at 07:17
  • I try this @android:color/white it's change color of whole edit text in project. But I want change only SearchView text color. – Shams May 14 '19 at 08:33
  • Check this out: https://stackoverflow.com/questions/18259707/change-appcompats-searchview-text-and-hint-color/66246372#66246372 – KennyAli Feb 17 '21 at 16:49

1 Answers1

0

Try this:

AutoCompleteTextView searchTextView = searchView.findViewById(android.support.v7.appcompat.R.id.search_src_text);
searchTextView.setTextColor(Color.BLUE);
Dinesh Shingadiya
  • 988
  • 1
  • 8
  • 23