ウェブビューにリードボルトバナー広告を追加したい。以下の広告コードは次のとおりです
<script type="text/javascript" src="http://ad.leadboltads.net/show_app_ad.js?section_id=xxxxxxxxx"></script>
これをどのように追加しますか?
ウェブビューにリードボルトバナー広告を追加したい。以下の広告コードは次のとおりです
<script type="text/javascript" src="http://ad.leadboltads.net/show_app_ad.js?section_id=xxxxxxxxx"></script>
これをどのように追加しますか?
WebViewには、loadData()というメソッドがあります。webviewがhtmlコードを直接ロードすることを許可します。試してみることができます。
String js_str = "<script type='text/javascript' src='http://ad.leadboltads.net/show_app_ad.js?section_id=xxxxxxxxx'></script>"
WebView webview = new WebView();
webview.loadData(js_str, null, null);
これを試して
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");