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
This is how do you load htmlData in a webview:
webview.loadDataWithBaseURL(null, getHtmlData(activity,**htmlData**) , "text/html", "utf-8", "about:blank");
where getHtmlData(activity,**htmlData**) returns a string of html code.
getHtmlData(activity,**htmlData**)