Webview无法加载AdSense广告

时间:2018-11-06 09:55:39

标签: android android-studio webview ads adsense

我在Android应用中使用WebView,但是当我访问网站时AdSense广告没有显示。我的网页视图代码:

webView.getSettings().setRenderPriority(WebSettings.RenderPriority.HIGH;
webView.getSettings().setDisplayZoomControls(false);
webView.getSettings().setAppCacheEnabled(false);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setCacheMode(WebSettings.LOAD_DEFAULT);
CookieManager.getInstance().setAcceptCookie(true);
CookieManager.setAcceptFileSchemeCookies(true);
String url = "http://solante.pw/";
webView.loadUrl(url);

日志记录:

  

-netbsd:getaddrinfo:googleads.g.doubleclick.net从代理gai_error = 0获取结果   I /铬:[INFO:CONSOLE(0)]“资源https://pagead2.googlesyndication.com/pagead/js/r20181031/r20180604/show_ads_impl.js已使用链接预加载进行了预加载,但在窗口加载事件发生后的几秒钟内未使用。请确保它具有适当的as值,并有意预加载。”,来源:(0)   I /铬:[INFO:CONSOLE(0)]“资源https://pagead2.googlesyndication.com/pagead/js/r20181031/r20180604/show_ads_impl.js已使用链接预加载进行了预加载,但在窗口加载事件发生后的几秒钟内未使用。请确保它具有适当的as值,并有意预加载。”,来源:(0)

当我进入与Google Chrome浏览器标签相同的URL时,广告就会显示,当我进入Google Chrome浏览器时,广告就会显示。我想我需要添加一个设置,但是我不知道。 Codes

0 个答案:

没有答案