WebView链接单击打开默认浏览器

时间:2010-11-19 21:23:13

标签: android android-webview android-browser

现在我有一个加载webview的应用程序,所有点击都保存在应用程序中。我想要做的是当在应用程序中单击某个链接(例如http://www.google.com)时,它会打开默认浏览器。如果有人有想法请告诉我!

6 个答案:

答案 0 :(得分:171)

今天我必须做同样的事情,我在StackOverflow上找到了一个非常有用的答案,我想在这里分享,以防其他人需要它。

Source(来自sven

webView.setWebViewClient(new WebViewClient(){
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
        if (url != null && (url.startsWith("http://") || url.startsWith("https://"))) {
            view.getContext().startActivity(
                new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
            return true;
        } else {
            return false;
        }
    }
});

答案 1 :(得分:29)

WebView webview = (WebView) findViewById(R.id.webview);
webview.loadUrl(https://whatoplay.com/);

您不必包含此代码

// webview.setWebViewClient(new WebViewClient());

而你需要使用下面的代码

webview.setWebViewClient(new WebViewClient()
{
  public boolean shouldOverrideUrlLoading(WebView view, String url)
  {
    String url2="https://whatoplay.com/";
     // all links  with in ur site will be open inside the webview 
     //links that start ur domain example(http://www.example.com/)
    if (url != null && url.startsWith(url2)){
      return false;
    } 
     // all links that points outside the site will be open in a normal android browser
    else
    {
      view.getContext().startActivity(
      new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
      return true;
    }
  }
});

答案 2 :(得分:12)

您可以使用Intent:

Intent browserIntent = new Intent("android.intent.action.VIEW", Uri.parse("your Url"));
startActivity(browserIntent);

答案 3 :(得分:8)

您只需添加以下行

yourWebViewName.setWebViewClient(new WebViewClient());

检查this以获取官方文档。

答案 4 :(得分:6)

您可以使用Intent:

Uri uriUrl = Uri.parse("http://www.google.com/"); 
Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);  
startActivity(launchBrowser);  

答案 5 :(得分:0)

由于这是有关 WebView 中外部重定向的首要问题之一,这里是 Kotlin 上的“现代”解决方案:

webView.webViewClient = object : WebViewClient() {
        override fun shouldOverrideUrlLoading(
            view: WebView?,
            request: WebResourceRequest?
        ): Boolean {
            val url = request?.url ?: return false
            //you can do checks here e.g. url.host equals to target one
            startActivity(Intent(Intent.ACTION_VIEW, url))
            return true
        }
    }