I want change the default font of webview to a custom font. I\'m using webview in developing an bilingual browser app for Android.
I tried getting an instance of cus
If you are putting fonts under res/font like me, then you can change the dir to the following:-
res/font
@font-face { font-family: yourfont; src: url("file:///android_res/font/yourfont.ttf") } body { font-family: yourfont; }