JavaScript (stored inside assets) not working inside WebView in ICS (Ice Cream Sandwich)
问题 Similar Problem : JavaScript doesn't work on ICS I'm working on an Android app that displays some code samples to the user. So, I'm using google-code-prettify in a WebView for syntax highlighting. But, the problem is, the js does not work on ICS (Ice Cream Sandwich) alone. It works perfectly on all other Android versions (2.2+) except 4.0.x . This is the code that I'm using. WebView webView = (WebView) findViewById(R.id.webViewSample); webView.getSettings().setJavaScriptEnabled(true); webView