I open WebPage, which contains the Gujarati language, but shows only English words in Android WebView.
So how can I also support the words of Gujarati.
You can see the difference in the following images:
String url = "http://www.police.gujarat.gov.in/dgp/CMS.aspx?Search=PS";
webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setBuiltInZoomControls(true);
webView.loadUrl(url);
Webpage with image:

Android WebView is displayed as follows:

Edited by:
How do I answer this question, I succeed, but I want to finally display Gujaratilinks in unsupported devices, how can I? Help me for this please.
source
share