I'm trying to change the search icon in a SearchBarRenderer Android custom renderer
and that's what I tried
Control.Iconified = false;
Control.SetIconifiedByDefault(false);
var searchView = Control.FindViewById<ImageView>(Resource.Id.search_button);
var searchicon = Resources.GetDrawable(Resource.Drawable.search);
searchView.SetImageDrawable(searchicon);
However, searchIcon is always null
When I looped through the children of SearchView I found and image view with ID 16909229 but setting the image drawable of that didn't change the search icon