我在這裏搜索,但幾乎所有的問題都是相反的..現在我問; 我有一個適用於android studio的webview應用程序。它通過我的webview應用程序打開位於HTML頁面中的所有URL。我希望它打開應用程序中的網址,而不是webview
但我想補充一些例外。例如,我想在默認的Google Play應用中使用https://play.google.com ....但不是我的webview應用。
摘要:應用程序的WebView必須打開通過應用程序本身的一些正常的網址,但通過本地其他應用程序的一些特殊的URL ...
我webviewclient代碼是這樣;
public class MyAppWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (Uri.parse(url).getHost().endsWith("http://play.google.com")) {
return false;
}
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
view.getContext().startActivity(intent);
return true;
}
}
調試過你的代碼了嗎?我猜「如果」的說法是錯誤的? – Devrim