I am developing app for Gujarati Blog. Blog is a mobile friendly design. So I load Blog URL to WebView.
webview1 = (WebView)findViewById(R.id.webView1);
WebSettings webSetting = webview1.getSettings();
webSetting.setJavaScriptEnabled(true);
webview1.loadUrl("www.myurl.com");
Actually Yet I don't want to go with Web-service. So I use WebView for my solution.
It's working fine. But Android Lower version is not supporting Gujarati font. Is there any way to add Gujarati or Hindi font library before loading URL, Or any luck with JavaScript.
www.myurl.com is a live URL of my Blog. So I can't add any CSS changes at loading time in my Android app.
Thanks.