如何在WebView中将本地css文件添加到页面?

时间:2014-02-06 13:49:58

标签: android html css webview

所以,我有一个来自url的WebView显示页面:

WebView webView = (WebView) findViewById(R.id.showContentWebView);
String url = "http://edition.cnn.com/2014/02/05/sport/shaun-white-sochi-slopestyle/index.html";
webView.getSettings().setJavaScriptEnabled(true);
webView.setWebViewClient(new WebViewClient());
webView.loadUrl(url);

我的资源文件夹中还有一个文件“style.css”。如何在连接了style.css的WebView中显示页面?

1 个答案:

答案 0 :(得分:0)

我认为这只有在您以某种方式处理HTML内容,添加指向您的css文件的链接时才有可能。在这种情况下,请参阅此question