vontio created CB-11288:
---------------------------

             Summary: shouldOverrideUrlLoading not called
                 Key: CB-11288
                 URL: https://issues.apache.org/jira/browse/CB-11288
             Project: Apache Cordova
          Issue Type: Bug
          Components: Android
    Affects Versions: 6.0.0
         Environment: windows
            Reporter: vontio


reproduce:
in cordova plugin initialize:
(WebView)(webView.getEngine().getView()).setWebViewClient(new 
SystemWebViewClient((SystemWebViewEngine) webView.getEngine()){
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
    Log.v(TAG,"shouldOverrideUrlLoading request " + url);
    return super.shouldOverrideUrlLoading(view, url);
}
@Override
public WebResourceResponse shouldInterceptRequest (WebView view, 
            String url)
{
    Log.v(TAG,"shouldInterceptRequest request " + url);
    return super.shouldInterceptRequest(view,url);
}
});

only shouldInterceptRequest called.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org

Reply via email to