onecoders / my.ui.collection

Android UI Materials
Artistic License 2.0
0 stars 1 forks source link

android HTML5WebView #81

Open onecoders opened 10 years ago

onecoders commented 10 years ago

https://github.com/gleitz/wikimaze-android

onecoders commented 10 years ago
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;
}
onecoders commented 10 years ago

image

onecoders commented 10 years ago

Issue “Android WebView “tel:” links show web page not found” at: http://stackoverflow.com/questions/4338305/android-webview-tel-links-show-web-page-not-found