所以,我有一个来自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中显示页面?