I want to apply Orange style to my search view which is an item in the action bar menu , I generated the orange style using http://android-holo-colors.com/ and I assigned the style to my search view using
<item
android:id="@+id/menu_search"
style="@style/EditTextOrange"
android:actionViewClass="android.widget.SearchView"
android:icon="@drawable/action_search"
android:showAsAction="always"
android:title="search"/>
my style
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated with http://android-holo-colors.com -->
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="EditTextOrange" parent="android:Widget.EditText">
<item name="android:background">@drawable/edit_text_holo_light</item>
<item name="android:textColor">#000000</item>
</style>
</resources>
How can I apply the style to my search view ?