I am using searchview in xamarin android. I have a custom font in Assets->fonts folder. I need to apply that font to my searchview hint.
I tried like below:
Typeface type = Typeface.createFromAsset(getAssets(),"fonts/Kokila.ttf"); searchView.setTypeface(type);
But its not working. Can anybody tell me how to I apply custom font to searchview hint.
Thank you