In my ecommerce app for making order payment i am redirecting user to webview. In my webview it asks user for login using Google Plus. When user clicks on Google+ button then child window opens and after successful authentication it sends result back to parent window and in parent window redirection takes place from login screen to the page from where user have came from. [Ex- Product Details Page,Cart Page,etc].
So then problem here is when i open link in android Webview
webview.loadUrl(url);
It opens fine as soon as user clicks on G+ redirection takes place and parent page get removed and g+ Authentication gets started. After successful authentication control is given to parent window but at this time parent is not present and all parents Javascript objects were replaced by child window previously.
I here my redirection is taking at wrong place.