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 に答える