0

Android WebView 不接受为表格指定宽度/高度的 html,如下所示:

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

    <table width='100%' height='100%'>
    <tr>
        <td>
            This is column 1
        </td>
        <td>
            This is column 2
        </td>
    </tr>
    </table>

</body>
</html>

在我的 PC 浏览器上完美运行。WebView 设置为layout_width="match_parent"layout_height="wrap_content",并使用以下方式加载数据:

webView.loadData(data, "text/html; charset=utf-8", "UTF-8");

如果您想从缓存中删除所有项目,请尝试此操作:

IDictionaryEnumerator enumerator = HttpContext.Current.Cache.GetEnumerator();    
while (enumerator.MoveNext())
{    
    HttpContext.Current.Cache.Remove(enumerator.Key);    
}
4

1 回答 1

1

已解决,需要替换为 width='100%25'。

于 2012-07-30T11:36:26.530 回答