如何在android dev的静态webview窗口中引用本地css文件?
我创建了一个要在 WebView 中显示的静态 html 页面,在 /assets/common.css
文件夹内有一个 css 文件。代码看起来像;
String linkCss = "<link rel=\"stylesheet\" href=\"/assets/common.css\" type=\"text/css\">";
String body = "<html><header>" + linkCss + "</header>" + content + "</body></html>";
webViewer.loadDataWithBaseURL("x-data://base", body , "text/html", "UTF-8", null);
除了未应用 CSS 之外,所有内容都显示正确。有什么问题吗?
I've created a static html page to be displayed in the WebView, I've a css file inside the /assets/common.css
folder. The code looks like;
String linkCss = "<link rel=\"stylesheet\" href=\"/assets/common.css\" type=\"text/css\">";
String body = "<html><header>" + linkCss + "</header>" + content + "</body></html>";
webViewer.loadDataWithBaseURL("x-data://base", body , "text/html", "UTF-8", null);
Everything display correctly except the CSS isn't being applied. Whats the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
Try:
我认为,您还应该将 css 链接中的
/assets/common.css
替换为file:///android_asset/common.css
。试试这个I think, you should also replace the
/assets/common.css
withfile:///android_asset/common.css
in the css link. Try this