android - How to make a phone call from webview

本文解决了一个在Android WebView中处理电话链接时遇到的问题。通过将URL处理分为两个部分,即处理以'tel:'开头的电话链接和以'http://'或'https://'开头的普通网址链接,确保了电话链接能够正确拨打,而普通链接则正常加载到WebView中。此外,该解决方案还考虑了加入地理链接处理的可能性,以避免之前导致的地图应用打开问题。

public boolean shouldOverrideUrlLoading(WebView view, String url) {
        if (url.startsWith("tel:")) { 
                Intent intent = new Intent(Intent.ACTION_DIAL,
                        Uri.parse(url)); 
                startActivity(intent); 
        }else if(url.startsWith("http:") || url.startsWith("https:")) {
            view.loadUrl(url);
        }
        return true;
    }

转载:http://stackoverflow.com/questions/9408378/android-how-to-make-a-phone-call-from-webview




OK so I solved the issue I think. I just needed to separate the URL overrides as follows:

        public boolean shouldOverrideUrlLoading(WebView view, String url) {
        if (url.startsWith("tel:")) { 
                Intent intent = new Intent(Intent.ACTION_DIAL,
                        Uri.parse(url)); 
                startActivity(intent); 
        }else if(url.startsWith("http:") || url.startsWith("https:")) {
            view.loadUrl(url);
        }
        return true;
    }

Now my regular links work as well as the tel links. I can also add in there for geo: links if I need to and it will not give me the issue that I was having before to open up maps on the phone.


参考:http://stackoverflow.com/questions/4338305/android-webview-tel-links-show-web-page-not-found

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值