开发者

Webview doesnt show Æ Ø Å properly

开发者 https://www.devze.com 2023-01-27 02:32 出处:网络
I have some content on a webpage which contains æ ø å, but my webview cant show them proper开发者_开发问答ly.

I have some content on a webpage which contains æ ø å, but my webview cant show them proper开发者_开发问答ly.

Does anyone know what the problem might be ?


In order to use UTF-8 characters inside an (X)HTML page you declare the encoding with this meta tag (in the head section of the page):

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

If that alone does not work you may be able to find more useful information here.


You need to ensure that the HTML file is saved as UTF-8 and that the Content-Type header in the HTTP response contains the proper charset. You can verify the headers by among others Firebug.

A <meta> tag for Content-Type would only work when the Content-Type header in the response is absent and this is usually not the case when the HTML file is served over HTTP. However, its presence is good for offline viewing and self-documentary purposes.

0

精彩评论

暂无评论...
验证码 换一张
取 消