I am having a webview , and webviewclient enabled for it. I have observed that 1.When loading HTTP pages the call flow is like onPageStarted > shouldOverrideUrlLoading >onPageFinished So here its working as expected.
2.While loading HTTPS pages code flow is onPageStarted >onPageFinished > shouldOverrideUrlLoading > onPageStarted > onPageFinished
Because of which i am facing some issues.Is this android issue?.Is there any way to fix it from application side?