Webview not able to load https url in android?

前端 未结 9 1381
别跟我提以往
别跟我提以往 2020-12-29 08:14

I am implementing webview application in android. When i am trying to load https url one or two times it finishes the activity. Agian tryin

9条回答
  •  忘掉有多难
    2020-12-29 08:44

    Delete this string:

    super.onReceivedSslError(view, handler, error);
    

    and in this method

    public boolean shouldOverrideUrlLoading(WebView view, String url) {
    

    turn return to false
    like this:

     return false;
    

    It helped me

提交回复
热议问题