2
即時試圖使用web視圖這樣的:機器人,使用WebView loadData
String html = " <html><body>
<table style\"background-color: #0a82a4; color: #ffffff;\">
... stuff ...
</table>"
</body>
</head>";
html.replace("#", "%23");
html.replace("\\", "%27");
html.replace("?", "%3f");
html.replace("%", "%25");
myWebview.loadData(html, "text/html", "utf-8");
它工作,但是,當附加寬度=在式標籤100%,webView的斜面加載數據。
LOLL,解決了:
html = html.replace("%", "%25");
html = html.replace("#", "%23");
html = html.replace("\\", "%27");
html = html.replace("?", "%3f");
本例僅使用loadUrl方法 – Rodrigo