我正在开发一个简单的Android应用程序,以便在一周中的每一天显示不同的页面。
我有一个我用Microsoft Word生成的HTML文件,保存为网页过滤。
它在带有API 17的WebView中呈现OK。
它在API 8上的浏览器中呈现OK。
但是,在API 8中的WebView中,它被报告为“网页不可用”,然后显然它列出了回复后的文本
"The Web page at " blah "might be temporarily down,
or..(more misdirection to useless impossibilities)"
其中blah看起来像我希望它呈现的HTML的正确字符(根本不是URL)!我希望我可以粘贴...好吧,如果我停在调试器中,也许我可以......
HTML包含了我认为的重要评论。如果我手动编辑该注释,那么它在API 8 WebView中呈现OK!
这条评论中有些神奇吗?或者它是否违反了微软不了解的一些评论规则?
如果您已经看到并解决了类似的问题,我感谢您的任何见解。
我将粘贴失败的HTML:
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=Generator content="Microsoft Word 14 (filtered)">
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:Consolas;
panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
line-height:115%;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoPlainText, li.MsoPlainText, div.MsoPlainText
{mso-style-link:"Plain Text Char";
margin:0in;
margin-bottom:.0001pt;
font-size:10.5pt;
font-family:Consolas;}
span.PlainTextChar
{mso-style-name:"Plain Text Char";
mso-style-link:"Plain Text";
font-family:Consolas;}
p.msochpdefault, li.msochpdefault, div.msochpdefault
{mso-style-name:msochpdefault;
margin-right:0in;
margin-left:0in;
font-size:12.0pt;
font-family:"Calibri","sans-serif";}
p.msopapdefault, li.msopapdefault, div.msopapdefault
{mso-style-name:msopapdefault;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
line-height:115%;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
.MsoChpDefault
{font-size:10.0pt;
font-family:"Calibri","sans-serif";}
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in 75.1pt 1.0in 75.05pt;}
div.WordSection1
{page:WordSection1;}
-->
</style>
</head>
<body lang=EN-US>
<div class=WordSection1>
<p class=MsoPlainText><b><span style='font-size:28.0pt;font-family:"Courier New"'>Wednesday</span></b></p>
<p class=MsoPlainText><b><span style='font-size:28.0pt;font-family:"Courier New"'>Mothra</span></b><span
style='font-size:28.0pt;font-family:"Courier New"'> will be here today from
10:00 to 4:00</span></p>
<p class=MsoPlainText><span style='font-family:"Courier New"'> </span></p>
</div>
</body>
</html>
我觉得这看起来不错! (我的第一篇文章)。
java很简单,但我想这可能是问题:
case QueryService.STATUS_FINISHED:
String results = resultData.getString("results");
// jcb changed
// mResponseContent.setText(results);
wv.loadData(results, "text/html", "utf-8");
感谢所有人!
答案 0 :(得分:1)
使用此代码:
wv.loadDataWithBaseURL("", YOUR_HTML, "text/html", "UTF-8", "");