Chris Banes mentioned here that the Lollipop SearchView API has now been updated in the AppCompat library. I follow the instructions directly from the blog post, but I see no effect.
Below is a snippet from my values/styles.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <item name="colorPrimary">@color/color_primary</item> <item name="searchViewStyle">@style/CustomSearchViewStyle</item> </style> <style name="CustomSearchViewStyle" parent="Widget.AppCompat.SearchView"> <item name="queryBackground">@color/orange</item> <item name="searchIcon">@drawable/test</item> </style>
source share