我正在以编程方式设置WebView
的内容。我想在内容周围添加一些样式,例如填充和字体大小,但是,根据我的内容,样式无法识别:
WebView mWebView = (WebView)browserView.findViewById(R.id.webview);
String content = GetContent();
StringBuilder sbContent = new StringBuilder();
sbContent.append("<!doctype html>");
sbContent.append("<body style=\"padding:10em;font-size:12em;\">");
sbContent.append(content);
sbContent.append("</body>");
sbContent.append("</html>");
mWebView.loadData(content.toString(), "text/html", "utf-8");
答案 0 :(得分:0)
首先,尝试使用有效的HTML。例如,您</html>
没有<html>
。
其次,相关内容可能会覆盖您的样式。您需要查看合并后的结果,看看是否有效。