程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-Android直接鏈接到默認浏覽器

android-Android直接鏈接到默認浏覽器

編輯:編程綜合問答
Android直接鏈接到默認浏覽器

我在webview中加載了一個 website。當點擊一個鏈接"Full Site",我想開啟手機的默認浏覽器,如何實現這個功能呢?目前它在web視圖中加載了完整的網站。

最佳回答:


你需要在 WebView 對象上添加一個 WebViewClient

WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.setWebViewClient(new MyWebViewClient());
........

private class MyWebViewClient extends WebViewClient {
    @Override
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
        if (Uri.parse(url).getHost().equals("www.mysite.com")) {
           //Load the site into the default browser
             Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
             startActivity(intent);
             return true;
        }
        // Load url into the webview
       return false;
    }
}

如果需要調整 if-statement語句。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved