I'm using a WebView to display a page in which the html includes an iframe where src="xxxxx.php".
This iframe loads as an ad image with an underlying link. If I click on that image (link), it tries to load the new page within original iframe (which doesn't show much in that little space). What I want to happen is clicking on the link to open the referred page in a new browser window, leaving my app as is.
If I use the Android browser to display the original page and click on this iframe, it loads the link as a new page. How do I get the same behavior with a WebView? Using a WebViewClient with shouldOverrideUrlLoading() doesn't seem to be called by the iframe link.
To detect links clicks inside of the iframe. The links should have additional parameters. I've found that:
Seems the iframe links without target parameter not possible to track exactly via WebViewClient
I can propose one fix to previous code:
I had a similar issue with google ads in a WebView source, since they load in an iframe as well. This is how I resolved it:
Try this in your WebViewClient, typically under your shouldOverrideUrlLoading()