I want to remove the search icon in the hint-field of the searchView (see image attached).
I've tried multiple solutions, in particular this:
int magId = getResources().getIdentifier("android:id/search_mag_icon", null, null);
ImageView magImage = (ImageView) searchView.findViewById(magId);
magImage.setLayoutParams(new LinearLayout.LayoutParams(0, 0));
Taken from this: Remove the SearchIcon as hint in the searchView but without any success. Ideas? :)