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
I am using this code :
wv = (WebView) findViewById(R.id.webView1); String pish = ""; String pas = ""; String myHtmlString = pish + YourTxext + pas; wv.loadDataWithBaseURL(null,myHtmlString, "text/html", "UTF-8", null);