webview跳转到浏览器
时间: 2023-09-13 18:05:57 浏览: 180
webview浏览器
您可以通过在 WebView 中使用 Intent 来将链接跳转到浏览器。
以下是一个示例代码:
```java
WebView webView = findViewById(R.id.webView);
webView.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (url.startsWith("http:") || url.startsWith("https:")) {
view.loadUrl(url);
return false;
}
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
return true;
}
});
```
在上面的代码中,如果链接以 "http:" 或 "https:" 开头,则在 WebView 中加载链接。否则,将链接通过 Intent 转到浏览器中打开。
阅读全文