recherche

Maison  >  Questions et réponses  >  le corps du texte

android - webview强制新开窗口

我想要浏览器实现强制新开窗口功能,即每点击一个链接总是强制创建一个webview去加载,请问如何实现?

天蓬老师天蓬老师2771 Il y a quelques jours694

répondre à tous(2)je répondrai

  • 天蓬老师

    天蓬老师2017-04-17 17:31:18

    //代码如下

    webView.setWebViewClient(new WebViewClient() {
                @Override
                public boolean shouldOverrideUrlLoading(WebView view, String url) {
                    view.stopLoading();   //停止加载url
                    Intent intent = new Intent(XXX.this, WebActivity.class);
                    startActivity(intent);
                    return  true;
                }  
            });
            

    希望对你有用,以上

    répondre
    0
  • 迷茫

    迷茫2017-04-17 17:31:18

    链接描述

    这个可以吧

    répondre
    0
  • Annulerrépondre