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

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

 
    
    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