1
單擊工作中的WebView導致「找不到網頁」錯誤的鏈接WTAI不從的WebView(安卓)
<html><a href="wtai://wp/mc;8015551212">Click me to make a call</a></html>
上。儘管相同的鏈接在移動瀏覽器上運行得很好。有任何解決這個問題的方法嗎?
編輯:
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");
}
'這是正確的URL(\「wtai:// wp/mc; 8015551212 \」)?' – 2012-04-05 14:14:36
您確定此網址在手機瀏覽器中有效嗎? – user370305 2012-04-05 14:20:38
修復了網址 - 實際上沒有反斜槓 – Asahi 2012-04-05 14:21:26