I have an embedded webview in my app. I have to show Facebook's new MultiLogin at one point during which the popup like window which appears when trying to login does not appear. The facebook login opens up in a new window. Once I successfully login, I'm taken to a blank window. How do I overcome this? Even the cancel button in the login page does not do anything. If I open this url in Android's basic browser, the popup appears perfectly fine and everything works as intended.
The Multilogin that I'm referring to is like the comments window that you find in this page.
http://www.insidefacebook.com/2011/03/07/comments-box-google-twitter/
I have overridden the shouldOverrideUrlLoading method for my webview as,
public boolean shouldOverrideUrlLoading(WebView view, String url) {
return false;
}
Can someone help me with this? Apologies if this has already been resolved, but I could not find the post anywhere.
-Hari