如何web link在安卓系统

发布网友 发布时间:2022-04-23 08:57

我来回答

1个回答

热心网友 时间:2022-06-18 17:24

在Android的WebView中,当点击调用网页的链接时,默认的动作是跳转到系统设定的默认浏览器中。如果想让链接始终在当前WebView中跳转的话,就需要添加以下代码:
1 WebView webView = (WebView) findViewById(R.id.webView1);2 webView.setWebViewClient(new WebViewClient());

如果只是想让特定的URL保持在WebView中跳转的话,可以通过重写WebViewClient来实现,示例如下:
1 private class MyWebViewClient extends WebViewClient { 2 @Override 3 public boolean shouldOverrideUrlLoading(WebView view, String url) { 4 if (Uri.parse(url).getHost().equals("192.168.3.95")) { 5 // This is my web site, so do not override; let my WebView load the page 6 return false; 7 } 8 // Otherwise, the link is not for a page on my site, so launch another Activity that handles URLs 9 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));10 startActivity(intent);11 return true;12 }13 }

其中的192.168.3.95可以转换成任何想要保持在WebViewClient中跳转的Host名称,例如www.example.com。
最后别忘了把webView.setWebViewClient(newWebViewClient());改为webView.setWebViewClient(newMyWebViewClient());

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com