Clicking on a link
<html><a href="wtai://wp/mc;8015551212">Click me to make a call</a></html>
in a WebView results in a "Page not found" error. Though the same link works just fine from the mobile browser. Any way to fix this?
EDIT:
String h = "<html><a href=\"wtai://wp/mc;8015551212;\">wtai</a></html>";
String g = "<html><a href=\"tel:5551234\">tel</a></html>";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
WebView web = (WebView) findViewById(R.id.webView1);
web.getSettings().setJavaScriptEnabled(true);
web.getSettings().setPluginsEnabled(true);
web.loadData(h, "text/html", "utf-8");
}