try it
WebView wv = (WebView)findViewById(R.id.webViewad); wv.getSettings().setJavaScriptEnabled(true); StringBuilder htmlData = new StringBuilder("<html>"); htmlData.append("<head><title>Ad</title></head>"); htmlData.append("<body>"); htmlData.append("<script type=\"text/javascript\" src=\"http://ad.leadboltads.net/show_app_ad.js?section_id=YOUR_ID\"></script>"); htmlData.append("</body>"); htmlData.append("</html>"); wv.loadData(htmlData.toString(),"text/html", "ISO 8859-1");
nacho source share