0

How to change the Search View Background color and the icons ?

ActionBar Sherlock

Chathura Wijesinghe
  • 3,310
  • 3
  • 25
  • 41

1 Answers1

0

i did the same adding in styles.xml:

<style name="MyTheme" parent="Theme.Sherlock">
            <item name="searchViewCloseIcon">@drawable/my_close_icon</item>
            <item name="searchViewSearchIcon">@drawable/my_search_icon</item>
            <item name="searchAutoCompleteTextView">@style/searchTextView</item>
    </style>

    <style name="searchTextView" parent="Widget.Sherlock.SearchAutoCompleteTextView">
            <item name="android:textColor">@android:color/black</item>
            <item name="android:textColorHint">@android:color/red</item>
    </style>

More info: couldn't change actionbarsherlock SearchView icon

Update:

Text color of SearchView in ActionBar with ActionBarSherlock

Community
  • 1
  • 1
Jorgesys
  • 124,308
  • 23
  • 334
  • 268