I am very new to both Android WebKit and JavaScript. I have a web page with 3 links (say A,B,C). When I open that page on my PC browser(Chrome) and click on the links, A opens in the same browser window, whereas B and C pops up a new window. In my android application I am
loading the original URL in a WebView. I have implemented my WebViewClient and overridden the shouldOverrideUrlLoading
. I am getting the call to shouldOverrideUrlLoading
whenever I click on A, but not getting it when I click on B or C?
I went through the page source and it looks like the 2 links that are not supported are opened as IFRAMEs. are IFRAMEs supported by WebView?
Thanks
KK