Changing the background drawable of the searchview widget

Intro Unfortunately there’s no way to set SearchView text field style using themes, styles and inheritance in XML as you can do with background of items in ActionBar dropdown. This is because selectableItemBackground is listed as styleable in R.stylable, whereas searchViewTextField (theme attribute that we’re interested in) is not. Thus, we cannot access it easily … Read more