Android webview问题<table width =“100%”> </table>

时间:2012-07-30 11:11:39

标签: android webview html-table android-webview

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");

1 个答案:

答案 0 :(得分:1)

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