Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 Android 应用程序,其中我使用了 HTML 日历。在设备 Motorola Droid X2 中,当用户选择日期时,拨号器来拨打电话。我需要限制它。
我是否没有使用任何代码进行拨号(例如:tel,url:tel)。
尝试shouldOverrideUrlLoading在 WebViewClient 中使用方法
shouldOverrideUrlLoading
例子:
webView.setWebViewClient(new WebViewClient(){ @Override public boolean shouldOverrideUrlLoading (WebView view, String url){ super.shouldOverrideUrlLoading view, url); } }
或此方法中您想要的其他代码