webview 修改html,使用自定义css在webview中呈现html -凯发k8官方网
凯发k8官方网
收集整理的这篇文章主要介绍了
webview 修改html,使用自定义css在webview中呈现html
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
我假设您的样式表“ style.css”已经位于资产文件夹中
使用jsoup加载网页:
doc = jsoup.connect("http://....").get();
删除到外部样式表的链接:
// remove links to external style-sheets
doc.head().getelementsbytag("link").remove();
将链接设置为本地样式表:
// set link to local stylesheet
//
doc.head().appendelement("link").attr("rel", "stylesheet").attr("type", "text/css").attr("href", "style.css");
从jsoup-doc / web-page生成字符串:
string htmldata = doc.outerhtml();
在webview中显示网页:
webview webview = new webview(this);
setcontentview(webview);
webview.loaddatawithbase;
与50位技术专家面对面20年技术见证,附赠技术全景图总结
以上是凯发k8官方网为你收集整理的webview 修改html,使用自定义css在webview中呈现html的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: android中互斥的控件,androi
- 下一篇: html外边距的复合属性是,margin