I am loading an html page in a Webview but for special characters such as ü
and ä
. I got question marks in place of it. Is there a simple way to solve this or do I have to make it go through an input reader?
public class Termine extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_termine);
WebView terminListe = (WebView) findViewById(R.id.termin_liste);
terminListe.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url){
view.loadUrl(url);
return true;
}
});
terminListe.loadUrl("http://www.arsdecora.net/termine.html");
}
}