How to change text color of SearchView in Toolbar? image
Asked
Active
Viewed 76 times
0
-
4Possible 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 Answers
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