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