webview设置字体颜色、大小

2023-07-28  本文已影响0人  晓晓桑

解决方法:
改变 WebView上显示网页内容的CSS样式:
//字体颜色设为白色, “p”标签内的字体颜色 “”定义了字体大小以及行高;
public final static String CSS_STYLE ="<style>
{font-size:16px;line-height:20px;}p {color:#FFFFFF;}</style>";
//data是要显示的内容
webView.loadDataWithBaseURL(null, CSS_STYLE+data, "text/html","utf-8", null);

比较全的:
public final static String CSS_STYLE =" <style>* {font-size:16px;line-height:20px;} p {color:#333;} a {color:#3E62A6;} img {max-width:310px;}�pre {font-size:9pt;line-height:12pt;font-family:Courier New,Arial;border:1px solid #ddd;border-left:5px solid #6CE26C;background:#f6f6f6;padding:5px;}</style>"; 上面全局样式:“*”定义了字体大小以及行高;“p”标签内的字体颜色;“a”标签内的字体颜色;“img”标签的图片最大宽度;“pre”为代码样式;

上一篇下一篇

猜你喜欢

热点阅读