美文网首页
webview设置字体颜色、大小

webview设置字体颜色、大小

作者: 晓晓桑 | 来源:发表于2023-07-28 14:06 被阅读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”为代码样式;

    相关文章

      网友评论

          本文标题:webview设置字体颜色、大小

          本文链接:https://www.haomeiwen.com/subject/vvddrdtx.html