佚名通过本文主要向大家介绍了webview加载h5页面,webview加载h5,webview与h5交互,h5 webview,android webview h5等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
问题: webview加载h5页面底部出现网页端没有的广告怎么解决?
描述:
解决方案1:
描述:
使用webview加载webview, 底下偶尔会出先网页端并没有的广告
我在网上搜索的基本都是网页端也会显示用JS代码去掉广告的, 这种网页端没有显示的情况请问有没有人遇到过, 希望帮助我下.
下面是截图, 广告就是这个样子的:
谢谢各位啦
解决方案1:
运营商劫持,用https
解决方案2:如过滤运营商的广告:webView.setWebViewClient(new WebViewClient() {
public WebResourceResponse shouldInterceptRequest(WebView view, String url) {
if (url.contains("adpro.cn")) {//若url含广告url
return new WebResourceResponse(null, null, null);
}
return null;
}
解决方案3:使用https协议;