17

I am getting "net::ERR_UNKNOWN_URL_SCHEME" while calling a telephone number option from an HTML page in Android. Do I need to add any permission(s) in the manifest to get this working? I haven't added anything in the manifest so far. Here's the HTML Code:

<a href="tel:+1800229933">Call us free!</a>

not_a_bot
  • 2,332
  • 2
  • 19
  • 33
Karthik
  • 4,943
  • 19
  • 53
  • 86

3 Answers3

38

The following should work and not require any permissions in the manifest (basically override shouldOverrideUrlLoading and handle links separately from tel, mailto, etc.):

    mWebView = (WebView) findViewById(R.id.web_view);

    WebSettings webSettings = mWebView.getSettings();
    webSettings.setJavaScriptEnabled(true);

    mWebView.setWebViewClient(new WebViewClient(){
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            if( url.startsWith("http:") || url.startsWith("https:") ) {
                return false;
            }

            // Otherwise allow the OS to handle things like tel, mailto, etc.
            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
            startActivity( intent );
            return true;
        }
    });
    mWebView.loadUrl(url);

Also, note that in the above snippet I am enabling JavaScript, which you will also most likely want, but if for some reason you don't, just remove those 2 lines.

David M
  • 1,151
  • 12
  • 21
2

I had this issue occurring with mailto: and tel: links inside an iframe (in Chrome, not a webview). Clicking the links would show the grey "page not found" page and inspecting the page showed it had a ERR_UNKNOWN_URL_SCHEME error.

Adding target="_blank", as suggested by this discussion of the issue fixed the problem for me.

Sly_cardinal
  • 12,270
  • 5
  • 49
  • 50
  • 1
    Add the target attribute to the anchor tag: `link text` – Sly_cardinal Jul 27 '15 at 12:34
  • strAbout = strAbout + "
    Email: " + jsonObj.getString("email"); strAbout = strAbout + "
    Phone Number: " + jsonObj.getString("contact_no"); I am loading this string on web view after this Spannable sp = new SpannableString(Html.fromHtml(strAbout)); Linkify.addLinks(sp, Linkify.ALL); final String html = "" + Html.toHtml(sp) + ""; webViewAbout.getSettings().setJavaScriptEnabled(true); webViewAbout.loadData(html, "text/html", "utf-8"); I am not able to add **target="_blank"**
    – Prashanth Debbadwar Jul 27 '15 at 13:44
0

Try this way,hope this will help you to solve your problem.

main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="center">

    <WebView
        android:id="@+id/webView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</LinearLayout>

MyActivity.java

public class MyActivity extends Activity {

    private WebView webView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        webView = (WebView) findViewById(R.id.webView);
        webView.loadData("<a href=\"tel:+1800229933\">Call us free!</a>", "text/html", "utf-8");
    }

}

Please add this permission in AndroidManifest.xml

<uses-permission android:name="android.permission.CALL_PHONE"/>
Haresh Chhelana
  • 24,720
  • 5
  • 57
  • 67