单击链接
<html><a href="wtai://wp/mc;8015551212">Click me to make a call</a></html>
在 WebView 中会导致“找不到页面”错误。虽然相同的链接在移动浏览器中运行良好。有任何解决这个问题的方法吗?
编辑:
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");
}