Android WebView或手机浏览器打开连接问题解决办法总结
程序员文章站
2023-11-05 19:20:04
android webview或手机浏览器打开连接问题解决办法总结
1.通常情况下 大家可能都想使用webview打开网页内部链接而不想再调用手机浏览器,
我们可以通过...
android webview或手机浏览器打开连接问题解决办法总结
1.通常情况下 大家可能都想使用webview打开网页内部链接而不想再调用手机浏览器,
我们可以通过以下两种方法实现:
(1)为webview设置一个webviewclient,并重写shouldoverrideurlloading(webview view, string url)方法。
class mywebviewclient extends webviewclient { @override public boolean shouldoverrideurlloading(webview view, string url){ // 重写此方法表明点击网页里面的链接还是在当前的webview里跳转,不跳到浏览器那边 view.loadurl(url); return true; } }
(2)为webview设置一个webviewclient,并重写onpagestarted(webview view, string url, bitmap favicon)方法。
class mywebviewclient extends webviewclient { @override public void onpagestarted(webview view, string url, bitmap favicon) { // todo auto-generated method stub super.onpagestarted(view, url, favicon); } }
这两种方法其实都是让参数view(webview)加载参数url从而避免手机浏览器加载url,第一种方式更常用一些。
2.但有些情况下 我们可能想用webview打开大部分链接,而有些链接我们希望调用手机浏览器来打开,我最近的一个项目中就有这样的需求。这样其实也很简单,我们只需要对上面第一种方法加以修改即可。
class mywebviewclient extends webviewclient { @override public boolean shouldoverrideurlloading(webview view, string url) { // 重写此方法表明点击网页里面的链接还是在当前的webview里跳转,不跳到浏览器那边 if (openwithwevview(url)) { view.loadurl(url); }else{ uri uri = uri.parse(url); //url为你要链接的地址 intent intent =new intent(intent.action_view, uri); startactivity(intent); } return true; }
其中openwithwevview(url)是自己写的一个方法,用来判断是否用wevview打开该链接。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!